Simple signup form validation using Object Oriented PHP + source code | Quick Programming Tutorial

preview_player
Показать описание
Lets validate a signup form using object oriented (OOP) PHP
#OOP #PHP #VALIDATE

source code:

more tutorials:
make a social website from scratch:

all crash courses:

code a live chat app in PHP and JavaScript:

make an eCommerce website from template:

convert an HTML template to PHP website:

simple signup and login system & security:

crop images with PHP:

PHP Object Oriented Programming basics:

Chart or graph using SVG:

Responsive web design:

clean pretty URLs:

support me on patreon:

my facebook:
Рекомендации по теме
Комментарии
Автор

I learn PHP so fast because you thank so much

claytontill
Автор

I have been using MySQL with PHP for years but have always avoided PDO. This time it was inevitable, I could no longer avoid it. Man, your tutorial got me up to speed and now I am doing even more sophisticated PDO queries.

AndrewKwabula
Автор

Hello. Thanks for sharing your knowledge with Us, and source code as well. Greetings from Venezuela

miguelpereira
Автор

thank you, i learned a lot of information from this lesson

projectnetwork
Автор

Next time I suggest using stylesheet instead of putting all in one index file

flax
Автор

Hi sir, thank you for this tutorial 🙂
How to disable form resubmission especially when clicking back in browser?

aymanalredi
Автор

Could you add two passwords one to confrim?

MateableCoin
Автор

That is nice
Before inserting data I want to check for duplicate data, but I always get return 1 which is true,

$duplicate = $this->db->query('SELECT COUNT(*) FROM guest_login WHERE email = "' . $post["guest_email"] . '"
OR guest_id = "' . $post["guest_mainid"] . '" ');
$num_rows = mysqli_num_rows($duplicate);

if ($num_rows <= 0) {

}

It suppose to work, but it doesn't

Saboor-Hamedi