The comments in here mentioning your clear and quality message in this video were dead on. I haven’t touched PHP in years and only recently MySQL for a personal project. You connected neurons that haven’t engaged in ages, your delivery style is so good. Liked and subbed and would definitely love to learn more from you.
Hi Dave! Starting as a Web Dev intern soon, and I just wanted to say, how great and informative these videos are for understanding "what's under the hood" so to say. Keep up the amazing work!
Fatal error: Uncaught Error: Undefined constant "require_DIR_" in C:\xampp\htdocs\process-signup.php:29 Stack trace: #0 {main} thrown in C:\xampp\htdocs\process-signup.php on line 29 i keep getting this error
This tutorial... Just wow... I don't know how to code as I am in the Network Admin side of IT, but with this tutorial I as able to run my very first programming page.
Massive respect for you, Senior Developer! 🙌 No UA-camr explains concepts as clearly and effectively as you do. Your content is truly next-level-keep up the amazing work! 🚀🔥
I second the vote about being the best php tutorial on UA-cam. I'm still confused (born that way) about the validation of the information before being written to the DB.
one of the video that got me understand, i've watched 5-more videos, and this is clear. tommorow is deadline for university assigment and my lecturer never teach php
You are a great Teacher!!! This is the best php tutorial i've seen. There are so many tutorials where you can't understand what about they are talking. Your tutorial is step by step, so clear and easy to understand. I must watch all your videos... Thanks a lot!!!
WOW! I always want videos like this. You do an amazing job. Thorough explanation on why each code block is chosen. How to test implementation along the way. And a full video from start to finish comprehensively solving the entire subject at hand. Thank you for your dedication to excellence and kindly sharing it with the rest of us.
This tutorial is awesome! Thank you Dave! I'll try to add your "email-verification tutorial" to this. Maybe with an extra email verification link for user verification. I am a total newbie to php and coding, but your tutorials are THE BEST on youtube! Thank you very much!
I really love this tutorial! You should make more Projects like this like (Task List, Converter, Calculator, .... ) I would really loved if you could be my Mentor . You clearly have magic to teach... Can wait to see a new project.
Wow, this's a very clear and deep explanation here. Thanks so much for the tutorial. It's obvious you really deeply understand this, based on your explanation and work through. It's so clear and confident. I really appreciate your effort into this tutorial.
@@Unscripted24Hours did you add the correct amount of strings? in $stmt->bind_param. For example I have first_name, last_name, username, password_hash. so mine is: $stmt->bind_param("ssss", $_POST["first_name"], $_POST["last_name"], $_POST["username"], $password_hash);
I especially enjoy your tutorials; they are some of my favorites. As a person who is career-transitioning into full stack development, I would grasp further from this tutorial if it was presented separately as PHP and JS, front and back end. Your current method was most logical. However, being only slightly familiar with JavaScript, I became a bit lost when you began this tutorial's JSON/front-end section. My javascript course will start in October, but I wanted to mention this for your consideration for those who are not able to return to school for instruction. I have now subscribed to your channel. Your time and expertise are much appreciated!
Please Dave, Could you do a video on MVC? Explaining the role of each part and how to set code up to achieve the objectives of the Pattern. Lots of videos on UA-cam on the subject are merely showboating! Folks showing off their skills! But, you're a natural Teacher. Can you please help ground us in how MVC works? What makes Views, views, Controllers, controllers, and Models, Models and the linkages. Please, Dave.
Thank you for your kind words! I do have a video on that: ua-cam.com/video/9t4MJZvRK78/v-deo.html It's an older video, but it's still valid. I also have a full course on that on Udemy that I'm working on updating right now.
This is part 1. Part 2 is here: PHP Password Reset by Email: ‣ ua-cam.com/video/R9bfts9ZFjs/v-deo.html and part 3 is here: PHP Account Activation by Email: ‣ ua-cam.com/video/kC0AIip7Bww/v-deo.html
Fatal error: Uncaught Error: Undefined constant "require_DIR_" in C:\xampp\htdocs\process-signup.php:29 Stack trace: #0 {main} thrown in C:\xampp\htdocs\process-signup.php on line 29 i keep getting this error
excellent stuff as always! & txs again (& again & again!!) for yr wonderful class on udemy. constantly using as a ref! u've completely won me over to php & as on an old vb programmer i genuinely never thought i'd ever say that! :)
amazing tutorial. you explain everything very clearly and add code that is crucial for typical website building, for us not to forget. thank you very, very much!
Thank you so much for this tutorial! It was super easy to follow and I didn't get any errors (other than the ones showed in the video of course). This'll be a big help for a lot of people!
Instead of the error code, I get "Fatal error: Uncaught mysqli_sql_exception:". I understand that this mean I should have some sort of try/catch, but I have been following the tutorial and was expecting to get the same results as you. Any idea what my be wrong?
Fatal error: Uncaught mysqli_sql_exception: Duplicate entry 'dan@gmail.com' for key 'email' in ...\process-signup.php:43 Stack trace: #0 ...\process-signup.php(43): mysqli_stmt->execute() #1 {main} thrown in ...\process-signup.php on line 43
@@bonjr2854 It could depend on your local PHP configuration, which could be different to mine - to catch that, you could add a try catch block and check for the 1062 error code
@@dave-hollingworth With a try/catch, how do I then grab the code from the exception? try { $stmt->execute(); } catch (mysqli_sql_exception $e) { die($e); }
@@dave-hollingworth If I do a similar call with $mysqli->error . " " . $mysqli->errorno inside the catch, I get the following error: Warning: Undefined property: mysqli::$errorno in C:\Users\...\process-signup.php on line 50 Duplicate entry 'nuages@gmail.com' for key 'email'
Amazing content, every step is explained why this is happening, very calm instructor. Sad there's no javascript projects in your channel Dave. If you could indicate some channel that have the same aspects of your channel I would appreciate. Thanks.
First of all, I am a big big fan of your PHP videos and courses,. To complement what they teach, I would love to see: 1. (Besides Authentication) Authorization: Creating an Admin area in a website, assigning roles and such things • Learning the differences, pros and cons of a basic Admin area VS. a full-fledged Dashboard 2. Implementation of a shopping cart and integration with payment methods and platforms (eCommerce basics) 3. Editing and managing user uploaded images, i.e. Resize dimensions and Optimizing file sizes 4. Managing graphic content dinamically in a website i.e. CMS-like basic stuff. I just wish to learn how to allow my website's authorized users to update homepage images themselves 5. Difference and use cases for API Calling VS CRUDs to manage relational database content. i.e. API HTTP Request methods VS CRUD SQL actions (a bit confused here about when to use each) Again, THANK YOU so so much, you really outstand discretely from the crowd, a true Academic man. I really appreciate your 'THE RIGHT WAY TO DO THINGS AND BEST PRACTICES' teaching style. P.S. There are many tutorials about all of this in UA-cam, nothing close to what I have learned from you. :)
Thank you so much for your kind words Joel! I've made a note of all your excellent suggestions - I'll let you know when I create some content for them!
@dave-hollingworth Thank you. This tut is SQLi version, next step i'll convert it to PDO version. then continue to your Password Reset by Email tut. thnx again :)
Thank you very much for this. Thanks for also teaching us how to avoid SQL attacks or client-side bypasses. I've subscribed to your channel and can't wait to see more of your content. I've one question that how can I ensure that the email actually exists and is not a made-up email. I will also appreciate if you made video on how to sign up using google or apple account.
This has got to be the best php tutorial on UA-cam. I really appreciate your work Dave! keep going.
Exactly you are right @Dave Hollingworth
This HAS TO BE the best tutorial I’ve seen on this subject. Excellent and thank you.
I've been struggling for days on how to setup php on my website and you just made everything clear in 45 minutes. Cheers!
The comments in here mentioning your clear and quality message in this video were dead on. I haven’t touched PHP in years and only recently MySQL for a personal project. You connected neurons that haven’t engaged in ages, your delivery style is so good. Liked and subbed and would definitely love to learn more from you.
Hi Dave! Starting as a Web Dev intern soon, and I just wanted to say, how great and informative these videos are for understanding "what's under the hood" so to say. Keep up the amazing work!
I never found someone who explains the way you do. Thank you very much.
Fatal error: Uncaught Error: Undefined constant "require_DIR_" in C:\xampp\htdocs\process-signup.php:29 Stack trace: #0 {main} thrown in C:\xampp\htdocs\process-signup.php on line 29
i keep getting this error
This tutorial...
Just wow...
I don't know how to code as I am in the Network Admin side of IT, but with this tutorial I as able to run my very first programming page.
Massive respect for you, Senior Developer! 🙌 No UA-camr explains concepts as clearly and effectively as you do. Your content is truly next-level-keep up the amazing work! 🚀🔥
I second the vote about being the best php tutorial on UA-cam. I'm still confused (born that way) about the validation of the information before being written to the DB.
i'm a beginner at php and i found this extremely clear and easy to understand! thank you so much!
Man, I thought the thumbnail of your video was a creepypasta, but u really help me to understand the topic.
one of the video that got me understand, i've watched 5-more videos, and this is clear. tommorow is deadline for university assigment and my lecturer never teach php
What other topics would you like to see a video on? Please let me know!
I would say OOP concepts in general , Solid principle, Phpunit
A PHP Event Calendar as I explained below. Using Datetime, PDO for database access, & dispay a message on a date that meets some criterion. Pls.
creating an api plz :)
... maybe an example manipulating SQL lite?
Video about pagination
This is the best PHP tutorial on UA-cam!
❤️❤️❤️❤️🤜🤛
You are a great Teacher!!!
This is the best php tutorial i've seen. There are so many tutorials where you can't understand what about they are talking.
Your tutorial is step by step, so clear and easy to understand. I must watch all your videos...
Thanks a lot!!!
WOW! I always want videos like this. You do an amazing job. Thorough explanation on why each code block is chosen. How to test implementation along the way. And a full video from start to finish comprehensively solving the entire subject at hand. Thank you for your dedication to excellence and kindly sharing it with the rest of us.
I have just discovered this wonderful tutorial of PHP. Incredible. Thank you very, very much!!!
I followed 5 different tutorials from other authors and none of them worked! This is the only one that worked! Code works!
Thank you so much!!!
Dave, this was exactly what I was looking for, and it's a great, clear & concise tutorial - thanks for making it!
I think this video is one of the best tuturial of creating the registration form in youtube.
You are a great lecturer your code helped me
Nice one so far This is the best with enough descriptions
It's the best and most complete video i saw on that topic to create a register and login form. Thank you Dave !!
The best signup and login with php and mysql video I've seen so far with some serious validation. Thank you for the amazing video Dave!
I've looked at a number of other login and register tutorials. This is the easiest to work with! THANKS
I like your style as it is very consistent throughout.
This tutorial is pure gold
One of the best tutorials I've ever watched! Keep up the good work and thank you very much!
Thanks!
Thank you so much for the super thanks, I really appreciate it! :-)
This tutorial is awesome! Thank you Dave!
I'll try to add your "email-verification tutorial" to this. Maybe with an extra email verification link for user verification.
I am a total newbie to php and coding, but your tutorials are THE BEST on youtube! Thank you very much!
Thank you for your kind words! I'm hoping to do a "part 2" to this soon with email verification, remember me and so on
I really love this tutorial! You should make more Projects like this like (Task List, Converter, Calculator, .... ) I would really loved if you could be my Mentor . You clearly have magic to teach... Can wait to see a new project.
Part 2: PHP Password Reset by Email is here: ua-cam.com/video/R9bfts9ZFjs/v-deo.html
It's not working for me and am copying thesame
@@ousainoubanja2696In what way isn't it working?
Your help has gotten my own website working wonders now. Thank you so much for the help and I hope you do well.
Wow, this's a very clear and deep explanation here. Thanks so much for the tutorial. It's obvious you really deeply understand this, based on your explanation and work through. It's so clear and confident. I really appreciate your effort into this tutorial.
Thanks for explaining this so well! Each step is so clear. Subscribed :D
Simple and clear! As long as PHP has been around it’s quite difficult to find solid tutorials - thank you!
My code stops at $stmt->execute() doesn't go to else plz answer me
@@Unscripted24Hours did you add the correct amount of strings?
in $stmt->bind_param. For example I have first_name, last_name, username, password_hash. so mine is:
$stmt->bind_param("ssss", $_POST["first_name"], $_POST["last_name"], $_POST["username"], $password_hash);
4 strings, 4 lots of s (as opposed to 3 lots of s in the video)
Thank you Dave. I've been brushing up my php skills and your video helped me a lot.
thank you I am a beginner and it helped me a lot to understand the fundamental. You have explained all one by one and clear. Thanks!!!
Finally, I see the whole enchilada in one go! Thank you. The only thing that it didn't work for me was
just- validate, I couldn't find (yet) why not.
Check the browser console to see if there are any network errors loading the justValidate library
Amazing tutorial loved it
I especially enjoy your tutorials; they are some of my favorites. As a person who is career-transitioning into full stack development, I would grasp further from this tutorial if it was presented separately as PHP and JS, front and back end. Your current method was most logical. However, being only slightly familiar with JavaScript, I became a bit lost when you began this tutorial's JSON/front-end section. My javascript course will start in October, but I wanted to mention this for your consideration for those who are not able to return to school for instruction. I have now subscribed to your channel. Your time and expertise are much appreciated!
Thank you very much for the feedback!
Dave, thank you for your tutorial. Very well explained and useful.
Till now the best tutorial I have ever seen 👍
Please Dave,
Could you do a video on MVC? Explaining the role of each part and how to set code up to achieve the objectives of the Pattern. Lots of videos on UA-cam on the subject are merely showboating! Folks showing off their skills!
But, you're a natural Teacher. Can you please help ground us in how MVC works? What makes Views, views, Controllers, controllers, and Models, Models and the linkages. Please, Dave.
Thank you for your kind words! I do have a video on that: ua-cam.com/video/9t4MJZvRK78/v-deo.html
It's an older video, but it's still valid. I also have a full course on that on Udemy that I'm working on updating right now.
Thank you for how so well you taught this, leaving a chance for improvement from ourselves. Much appreciated.
Very well explained. Great work, Dave! And thank you very much.
This is part 1. Part 2 is here: PHP Password Reset by Email:
‣ ua-cam.com/video/R9bfts9ZFjs/v-deo.html
and part 3 is here: PHP Account Activation by Email:
‣ ua-cam.com/video/kC0AIip7Bww/v-deo.html
Superb to-the-point video. I especially enjoyed the AJAX + API part, you nailed it under a couple of seconds.
Very bright tutorial and it's so easy to understand the concepts.
Very nicely done and basically just saved my bacon, great tutorial and added a lot of security measures which are always important :)
Fatal error: Uncaught Error: Undefined constant "require_DIR_" in C:\xampp\htdocs\process-signup.php:29 Stack trace: #0 {main} thrown in C:\xampp\htdocs\process-signup.php on line 29
i keep getting this error
Brilliant, thank you for the free and open education.
THANK YOU SO MUCH FOR THIS, YOU SAVED MY LIFE I LOVE YOU
this is gold, best tutorial I've seen so far
This the best tutorial on php. Good and straight to the point explanation
mysqli_report(MYSQLI_REPORT_OFF);
Is this a question ?@@achmaliki8389
excellent stuff as always! & txs again (& again & again!!) for yr wonderful class on udemy. constantly using as a ref! u've completely won me over to php & as on an old vb programmer i genuinely never thought i'd ever say that! :)
Excellent, thank you, Dave!!
Excellent tutorial. Heading to part 2. Thank you very much!!!
best php channel imo
Thank you so much!! Im your fan from now on!
This channel is amazing
amazing tutorial. you explain everything very clearly and add code that is crucial for typical website building, for us not to forget. thank you very, very much!
This is such a great tutorial. You explained everything step by step which is easy to understand.
Thank you so much for this tutorial! It was super easy to follow and I didn't get any errors (other than the ones showed in the video of course). This'll be a big help for a lot of people!
super easy to follow. thanks so much for this tutorial!!
Good teacher. Articulates well and straight to rhe point
This is great work! I can tell you are a god. Now my mind has enlighted and I understand much more than I did before watching this video! Thank you!
just one word for this video: awesom, by the way dave could you please add forgot password and email verification process if possible.
Instead of the error code, I get "Fatal error: Uncaught mysqli_sql_exception:". I understand that this mean I should have some sort of try/catch, but I have been following the tutorial and was expecting to get the same results as you. Any idea what my be wrong?
Fatal error: Uncaught mysqli_sql_exception: Duplicate entry 'dan@gmail.com' for key 'email' in ...\process-signup.php:43 Stack trace: #0 ...\process-signup.php(43): mysqli_stmt->execute() #1 {main} thrown in ...\process-signup.php on line 43
@@bonjr2854 It could depend on your local PHP configuration, which could be different to mine - to catch that, you could add a try catch block and check for the 1062 error code
@@dave-hollingworth With a try/catch, how do I then grab the code from the exception?
try {
$stmt->execute();
}
catch (mysqli_sql_exception $e) {
die($e);
}
@@dave-hollingworth If I do a similar call with $mysqli->error . " " . $mysqli->errorno inside the catch, I get the following error:
Warning: Undefined property: mysqli::$errorno in C:\Users\...\process-signup.php on line 50
Duplicate entry 'nuages@gmail.com' for key 'email'
@@bonjr2854 The property is called "errno", not "errorno" - so it would be $mysqli->errno
Very Good! Very well explained and demonstrated.
This is super informative and really explained in simple terms. Thank you!
Amazing content, every step is explained why this is happening, very calm instructor. Sad there's no javascript projects in your channel Dave. If you could indicate some channel that have the same aspects of your channel I would appreciate. Thanks.
You are the best! Thank You for yours tutorials.
First of all, I am a big big fan of your PHP videos and courses,. To complement what they teach, I would love to see:
1. (Besides Authentication) Authorization: Creating an Admin area in a website, assigning roles and such things
• Learning the differences, pros and cons of a basic Admin area VS. a full-fledged Dashboard
2. Implementation of a shopping cart and integration with payment methods and platforms (eCommerce basics)
3. Editing and managing user uploaded images, i.e. Resize dimensions and Optimizing file sizes
4. Managing graphic content dinamically in a website i.e. CMS-like basic stuff. I just wish to learn how to allow my website's authorized users to update homepage images themselves
5. Difference and use cases for API Calling VS CRUDs to manage relational database content. i.e. API HTTP Request methods VS CRUD SQL actions (a bit confused here about when to use each)
Again, THANK YOU so so much, you really outstand discretely from the crowd, a true Academic man. I really appreciate your 'THE RIGHT WAY TO DO THINGS AND BEST PRACTICES' teaching style.
P.S. There are many tutorials about all of this in UA-cam, nothing close to what I have learned from you. :)
Thank you so much for your kind words Joel! I've made a note of all your excellent suggestions - I'll let you know when I create some content for them!
@@dave-hollingworth I appreciate that!
This video is like a hidden gem!
just wow, keep going. ❤
Explanation is very clear, thank you so much!
Hi Dave, You have been so helpful with this code. Thank You!
I tNice tutorialnk you speak for a good portion of us.
Excellent thanks Dave.
Thank you so much sir. This helped me a lot.
BEST TUTORIAL EVERRR THANK YOU!
Great. Thanks brother. Awesome content. I am amazed at the speed you type the codes.😳
Thank you! There might be some editing tricks in there ;-)
that is good. we learned all the important concepts as quickly as possible because of the editing. @@dave-hollingworth
This is super informative and really explained in simple terms. Thank you
@dave-hollingworth Thank you.
This tut is SQLi version, next step i'll convert it to PDO version.
then continue to your Password Reset by Email tut.
thnx again :)
Perfect video, thank you for making it.
I like this tutorial because it's will explained on what happening on codes and step by step and simple
Thank you very much! Really helpful!
Thank you very much for this. Thanks for also teaching us how to avoid SQL attacks or client-side bypasses.
I've subscribed to your channel and can't wait to see more of your content.
I've one question that how can I ensure that the email actually exists and is not a made-up email. I will also appreciate if you made video on how to sign up using google or apple account.
You are the best!
thank you very much! really helpful
I really appreciate your work ....
Fantastic tutorial!
Well explained!
wow, simple and precise
Thank you dave you helped me
you're a freaking genius jsjjsjsjsjs thanks my friend
This is super informative
Why don't you still have a million+ subscribers yet?
Lifesaver! Thank you!!!
Thank you so much you are great! i did not find the like icon