Тёмный

How To Create A OOP PHP Login System For Beginners | OOP PHP & PDO | OOP PHP Tutorial 

Dani Krossing
Подписаться 475 тыс.
Просмотров 204 тыс.
50% 1

In this PHP tutorial you will learn how to create a login system in PHP from, and how to show content after being logged in. You will also learn about error handlers, and MySQLi databases, which includes how to make a login form and a signup form.
I am aware that this is a very long video, but I promise it will be one of the easiest guides you will ever find on how to create a OOP PHP login system from scratch!
If you get any errors during this tutorial, make sure to check out my solutions at the very bottom of this description! :)
➤ LINKS
The next Profile Page tutorial: • How To Create a User P...
Install XAMPP & a local server: • 2: Installing A Local ...
Regular expressions (search patterns): • 59: Functions Using Re...
PDO vs. MySQLi links:
dev.to/mega6382/mysql-vs-mysq...
www.hubspot24.com/rg-post?blo...
➤ GET ACCESS TO MY LESSON MATERIAL HERE!
First of all, thank you for all the support you have given me!
I am really glad to have such an awesome community on my channel. It motivates me to continue creating and uploading content! So thank you!
I am now using Patreon and RU-vid Memberships to share improved and updated lesson material, and for a small fee you can access all the material either from my memberships or Patreon, depending on your preference. I have worked hard, and done my best to help you understand what I teach.
I hope you will find it helpful :)
Memberships: / @dani_krossing
Patreon: / mmtuts
➤ ERRORS YOU MIGHT RUN INTO!!!
▸"unexpected }"
If you get this error message:
Parse error: syntax error, unexpected '}'
Then it is because you forgot to close a ) or ; somewhere.
▸"unexpected ;"
If you get this error message:
Parse error: syntax error, unexpected ';'
Then it is because you forgot to close a } or ) somewhere. Probably because you made a mistake with your parenthesis near the "empty()" functions in your signup script.
▸"hashed pwd error"
If you get an error in the script when you hash the password, then it is because you decided not to follow my steps exactly in the video when I created the database table. Make sure you DON'T set the varchar() to a lower value! When you hash the password it will take up a lot of space in this column, and if you set a lower number then it won't fit!
▸"signup=success but database is empty?"
Here there might be a few reasons for your error. 1st is that you made a syntax/spelling mistake in your code. And yes you will claim that your code is identical to mine, but in 90% of the cases people claim this, I still find a syntax error in their code. So check your code for errors!
2nd reason is that MAMP seems to cause a lot of issues for people. Therefore try using XAMPP and make sure you write the same as me in the dbh.inc.php file.
3nd reason might be because you didn't follow the tutorial 100% when we set up the database at the beginning.
▸"HTTP ERROR 500"
HTTP ERROR 500 is a server error, meaning that you are most likely using an outdated version of apache or mysql. Try updating your servers and make sure that you are using the latest version of PHP.

Опубликовано:

 

11 окт 2021

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 592   
@Dani_Krossing
@Dani_Krossing 2 года назад
👉👉I MADE TYPOS IN THE VIDEO YOU NEED TO FIX! 👉ERROR 1: In login.classes.php inside the getUser() method, I made two important typos that will make your code not work. (WHOPS! 😅 ty Sentinel Corps for letting me know) The first SQL execution should be: $stmt->execute(array($usn, $usn)); The second SQL execution should be: $stmt->execute(array($usn, $usn, $pwdHashed[0]['user_pwd'])); 👉 ERROR 2: As someone pointed out in the comments, using rowCount() to check how many results we get when we query the database, isn't a method that work in all database types. Instead you should use count() after you returned the data. Make sure you do it ALL PLACES where you SELECT from the database. 🙂 SO INSTEAD OF: if($stmt->rowCount() == 0) { $stmt = null; header("location: login.php?error=usernotfound"); exit(); } $profileData = $stmt->fetchAll(PDO::FETCH_ASSOC); return $profileData; IT SHOULD BE: $loginData = $stmt->fetchAll(PDO::FETCH_ASSOC); if(count($loginData ) == 0) { $stmt = null; header("location: login.php?error=usernotfound"); exit(); } return $profileData; 👉 ERROR 3: If you get a "undefined variable $result", then it is because your editor doesn't like when a variable is declared without a value assigned to it. To fix it, change: $result; To: $result = false; 👉 BEFORE YOU COMMENT ABOUT LESSON MATERIAL: And for people who "want my lesson files for free", here is my answer to that. 🙂 My subscribers has voted on me not including CSS in my future videos because it took too long, and because you already should know HTML/CSS at this point. This is not a HTML/CSS tutorial, and even so you are not supposed to "just copy" from this video, you are supposed to "learn and apply" to your own website. People have already supported me on Patreon to get my lesson files, therefore I won't suddenly make it free to download. People who think I'm obligated to "give my material out for free", have gotten the wrong impression about what rights you have. The free educational videos I make are a product I put a lot of effort into, and I can distribute it however I want. Just be happy that ALL my videos are free, and not on Udemy for $15. 😉 I have seen some angry comments say that I'm "putting up paywalls" for my content, which would imply that you couldn't follow my tutorial without paying for my files... So let me debunk that really quick... There is NO "extra" PHP in my lesson files, that you won't find in this video. The "lesson material" is meant for people who are making mistakes or typos in their code, and would like my personal files to compare to see where they made mistakes. Or for people who want MY HTML and CSS. 😊 This is how I run my channel so deal with it. 🙂 I won't argue with anyone about it.
@mariamzayed91
@mariamzayed91 2 года назад
thank you Dani for giving us these videos anyway, it's really helpful❤❤We appreciate your efforts❤
@djerebus
@djerebus 2 года назад
I've been waiting for this. I love your teaching style and would easily pay for more content in php oop development
@kingshub3486
@kingshub3486 2 года назад
Thanks for the video
@kingshub3486
@kingshub3486 2 года назад
Thanks for the video
@gvks
@gvks 2 года назад
Dani, how can I contribute just one time? Amazing videos....learned a lot. Thank You!
@alfie5652
@alfie5652 2 года назад
Hi Daniel, I started watching your basic HTML & CSS courses about 2 years ago, after looking to move into front-end programming as a new career. 2.5 years later I am now a mid-level front end developer in a fantastic career and on my way up. I want to owe a huge part of it to your early tutorials, making the learning process enjoyable, else I would have probably stopped very quickly. Love your content, keep it up :)
@JohnSmith-mm6hf
@JohnSmith-mm6hf 2 года назад
Way to go Alfie !
@albedesigns
@albedesigns 6 месяцев назад
That's really awesome!
@lancemartija
@lancemartija 2 года назад
Took me three days to finish your Object Oriented PHP Tutorial and man, oh man, did I learn more than what my uni professor is teaching us. Kudos to you and thanks a lot, sir Krossing! You are an inspiration to me. Keep on coding and I'll keep on following!
@thenukawickramaarachchi6328
Hey Daniel. I wanted to thank you so much for your effort on these tutorials. Your HTML, CSS, JAVASCRIPT and PHP courses helped me to achieve higher marks in my Web design assignment. Your tutorials are the only things that I have looked upto and followed. You are a fantastic teacher. I don't normally leave comments in RU-vid but I wanted to thanku by leaving this comment to thank you for sharing your knowledge with everyone else. For anyone who look forward to learn and develop their skills on Web designing this is the place to learn.
@Big-Timbo
@Big-Timbo 2 года назад
as always Dani, providing premium dev content for free, you've saved me so much through my uni course. Much love bigman
@em.pxthetic
@em.pxthetic 2 года назад
Thank you for painstakingly explaining everything you do. I'm sure there are many people (like myself, a rookie) who feel anxious if we deviate from anything explained but you make it very clear what is important and not important to have copied exactly. Thanks dude!
@Rafael-es5dp
@Rafael-es5dp Год назад
I'm so glad to see you doing tutorials about programming again. You're so easy to understand when explaining things. Thank you so much
@jammincoder
@jammincoder 2 года назад
My gosh, man... I literally just finished the PHP login system that you posted on October 11 2020 yesterday, now you come out with this!! This is awesome!!
@muhammadtanko9234
@muhammadtanko9234 2 года назад
Same with me 😃😃😃
@jamalmammadzada9413
@jamalmammadzada9413 2 года назад
rip to the people who did the tutorial in 2018, then realized there's a new one, AND right as they were finishing, this came out. LOL (totally not me)
@Dani_Krossing
@Dani_Krossing 2 года назад
Hehe 😂 At least this one isn't just a "remake", and instead an actual OOP version. 😉
@emmanuelchukwuegbo961
@emmanuelchukwuegbo961 Год назад
Which is better please 🙏
@scoozilife
@scoozilife Год назад
@@emmanuelchukwuegbo961 depends on what your doing. Car is better gas mileage but your not gonna haul lumber with it 🤪 Procedural programming in general can be better than OOP programming depending on what your doing. OOP provides "security" through classes as well as saves you from using duplicate code over and over again. Hope you can decide what's better for you!
@i.t.starters2019
@i.t.starters2019 2 года назад
Been waiting for this tutorial for over a year now and finally came. I appreciate you man, thank you so much. Love from South Africa. 🇿🇦🇿🇦
@a-factoracademy
@a-factoracademy Год назад
Literally, this is one of the best PHP project video on RU-vid. Thanks Dani👍🏾💯
@khwesigysst1838
@khwesigysst1838 Год назад
Hello Dani. You've been a great php teacher to me. Following your php tutorials I can clone unsplash with basic login system, sign up system, password reset, and how to upload files/photos. Thank you so much. But if you could show some love and do a video on php teaching us how to login with cookies and how to keep users logged in (remember me) with cookies. If nobody has asked u to. I hope you do one of your greatest fan this favor. Thank you so much Dani
@jamalmammadzada9413
@jamalmammadzada9413 2 года назад
It's just crazy how this man is able to make such good videos, KEEP IT UP!
@user-cx5ii3ts4q
@user-cx5ii3ts4q Год назад
This video is definitely worth watching for anyone new to PHP registration and login forms. It is simple, concise and very educational.
@Rehaaabek
@Rehaaabek 2 года назад
Great tutorial 🔥🔥 Here are couple ideas I'd love to watch 1) CRUD 2) Routing System 3) Composer basics
@ThePancakeJedi
@ThePancakeJedi 2 года назад
Dani, you are the best on the web imho. You've been teaching me for years and I keep coming back.
@deitunegold4593
@deitunegold4593 Год назад
spent a week going all over youtube trying to search for a better tutorial, ladies and gentlemen, this is it!
@jon82hill
@jon82hill 2 месяца назад
just spent the last hour trying to work out why there was an issue with my error handling only to find a silly typo!! it was still a productive hour as I now have a better understanding of what the code is actually doing. its nice to see even the pros make typos ;-) one of the things I like about your videos is that when you yourself make mistakes you explain later on in the video how you rectified them instead of just editing the mistakes out.👍
@pixelrangerstudio86
@pixelrangerstudio86 Год назад
Dani! I followed all your PHP tutorials, very clear easy to follow and understand! I have some basic PHP knowledge already so this made my life easier. Thanks and please keep up the good work! Please release more like this. With these tutorials i managed to make a fully fledged login and register system. Only thing i am missing is 2FA. :)
@charmcaster2549
@charmcaster2549 2 года назад
i just started php and watch almost playlist and write notes. and i can say im getting the hang of it thank you very much sir youre a great teacher
@fiskegalen1
@fiskegalen1 2 года назад
I'm totally new to PHP and I got this working perfectly. Thank you from Sweden!!! :)
@christopher4088
@christopher4088 2 года назад
When I’ve recently dust off the rust of my HTML and CSS skills, you upload a PHP video
@MightyKingKala
@MightyKingKala 2 года назад
Bro I just wanna say that I love you, you are doing priceless work and you have best PHP tutorials .
@obsidian314
@obsidian314 Год назад
Great tutorial. I love your teaching style. I also love that your transparent with your typos and mistakes. Helps me know that its just part of coding.
@astratow
@astratow 2 года назад
Splendid video! And valuable comment about possible errors! Absolute gem in the world which tries to ignore PHP. Thank you Dani!
@lucacerciello6122
@lucacerciello6122 2 года назад
Thanks a lot Dani! I'm teaching myself coding and you became like a guru for me.
@Darkest-Kn1ght
@Darkest-Kn1ght 11 месяцев назад
I've been watching your videos for quite some time now and I wanted to thank you for sharing your knowledge with us. When it comes to web dev, I don't think you're going to find any courses over at udemy that compare to yours, no matter the price. I'm currently 50 minutes into this video, and until you pointed some things out that you forgot to change, you lost me BIG BIG!! lol but now that you pointed those out, I'm going to go back and continue knowing what has to be changed. Thanks again for being patient in your videos and allowing us to type out everything and learn by doing.
@CodeWithBehram7497
@CodeWithBehram7497 6 месяцев назад
few years back became oop php developer watching ur old videos of oop php and i know ur channel is not in millions of subscribers but i like the way you teach and am also ur old subscribe 😊
@randalfjohn9848
@randalfjohn9848 2 года назад
You're the best as far as PHP is concerned. You're the absolute best. I have been running from OOP, but damn you just make it look so so easy.
@lancewilliamcatal6870
@lancewilliamcatal6870 2 года назад
Well whaddaya know. Just what I need. You never disappoint, Dani.
@GRAdiaforos
@GRAdiaforos 2 года назад
Great Video Dani ! It will be very interesting (after your mvc project), to create a complex registration form, based on mvc, with ajax autoloaders, warnings, error handlers, client & server-side validation for dates, emails, integers, strings etc...
@chyjohn6502
@chyjohn6502 Год назад
Thanks a lot Daniel for these videos, asides the videos in this series, I've actually learnt a lot from your tutorials over the years. I know no one asked, but my first ever loginsystem, around 2019 was with your video.. lool... Now like before, you've contributed again towards helping me transition gradually to oop. Thanks a lot man. Thank you. I really do hope to become a pro like you someday. 😊
@randyhopkins9895
@randyhopkins9895 2 года назад
Howdy Dani, works great, no errors! also added users_address to further the use for a new family site where it goes to profile page to view users info and buttons to a family gallery page and an auction page. Great Job. two thumbs up !!
@stephenokoduwa
@stephenokoduwa Год назад
Dani is the professor I wish I had in my years in University. Great tutorial!
@laravelpixels6935
@laravelpixels6935 2 года назад
I love how dani explains things
@jasongrant2366
@jasongrant2366 2 года назад
Glad you're back at it
@HTswahili
@HTswahili 2 года назад
Here from Tanzania I become pro in PHP via the channel... thanks so much💪💪
@brangja4815
@brangja4815 Год назад
I just completed both of your php basic series. I just wanna say Thank you.
@HakanGalip
@HakanGalip 12 дней назад
I learned more from your Video tutorials then from any other teacher. You are the best, thanks a lot...
@b391i
@b391i 2 года назад
Thanks dude this login system with OOP is incredible 👏
@collinswashington1216
@collinswashington1216 2 года назад
Dani i have been following your causes for at least 1year now and you are the only youtube creator that i enjoy and understand very well . Am collins and 16years old from Africa . Your conte will make a big change in my life and i know it ani .and i wish i could help every month on brands now its just that am still in highschool . But i know one day i will my name will on you list of brands wt the end of the videos #love_u_dani_krossing
@bhgur84
@bhgur84 2 года назад
Thanks Dani. Another great tutorial and again very well explained. Honestly I am very glad about the few typo's. I think this way it is more educating and also gives me hope since I make so many typo's myself :-) I can follow up on one of the previous comments and would love to see a PHP OOP CRUD application with an upload function for .PDF files. Thanks again.
@krillinsworld9439
@krillinsworld9439 Год назад
Great tutorial despite the the errors crashing your system, we are only human after all, fantastic process just the same. I love your teaching methods and your sense of humor. You are cray just like I am. I had to watch this video again because I am new with working with OOP & PDO and I was not sure how to reference data pulled from the database column for further processing. Been working too much with procedural PHP. My mistake was with the multidimensional array reference ($user[0]['colref']) and because of this oversite, I threw away over 6 months worth of work. LOL Live and lean... Thanks Dani!
@DOTPIE
@DOTPIE 3 месяца назад
Thanks a lot for your work! I think this is the best tutorial I came across in a while, and I'm quite picky! I've been trying to find something that was more similar to the classes I'm having (just started learning php) so I can use it as supplement material for them. You present things very clearly 🤗
@markhendricks8160
@markhendricks8160 Год назад
Only 2k likes on thiis video?? smh this is the best PHP tutorials I've found so far and I have been LOOKING
@bryebolony
@bryebolony Год назад
Hi Dani, thank you for the incredible content you provide on your channel. Your classes have been extremely helpful and have had a significant impact on my learning journey. Your dedication to teaching and sharing your knowledge is truly inspiring, and I am grateful for the time and effort you put into creating your videos. Your explanations are clear and concise, making it easy for me to understand even the most complex topics. 😊
@BarnabyPerrinAldous
@BarnabyPerrinAldous 2 года назад
Another great tutorial! Worked for me! Nice one bro!
@schlossguide
@schlossguide 2 года назад
Thanks for the tutorial... it's great and functional out of the box. There are a few typos in there, but if you are able to follow your lead, you should be able to correct them on your own. Thanks again!
@keithrogerseventphotograph9193
Great tutorial, saved in my playlist. Thank you!
@mounir101
@mounir101 2 года назад
It is a very helpful video and I really like your tutorials. Keep going:) and thanks so much, Dani.
@benbotch1746
@benbotch1746 2 года назад
Great work Dani 👍 much love from Ghana 🇬🇭😊
@saffron6661
@saffron6661 2 года назад
LOL just recently I think I remember asking for an OOP tutorial from you, thx Dani, next JavaScript or working with Frameworks plz !! :D
@horizon6309
@horizon6309 2 месяца назад
Brilliant video. Thanks for taking the time out to make this. I have learnt to build a login system in Node.js/Express using similar techniques, for one of my projects in the procedural way. But seeing this implemented in OOP is so much better. The code looks so much cleaner. I can now understand why OOP can be beneficial. The code is more organised and structured.
@imadel3647
@imadel3647 2 года назад
Super great !!! We need more content like that i love the feeling when i watch your pragramming tutos Thank you so much #Dani 😁
@GodexWasTaken
@GodexWasTaken 10 месяцев назад
Man you have no idea how much stupid mistakes i made. I Thought that it just doesn't work.. did not give up and learned so much, THANKS! Gonna keep going.
@Dani_Krossing
@Dani_Krossing 10 месяцев назад
Everyone makes mistakes while programming 🙂 Even the devs with 20 years experience. The important thing is to do what you did, and not give up, since it makes it easier and faster to recognize "what went wrong" next time. 😉
@user-vr7ip8wy4w
@user-vr7ip8wy4w 9 месяцев назад
You realy helped me out with some OOP! nice example with the login system! Realy nice! Thanks again
@lucasjosueguerrapontelli30
@lucasjosueguerrapontelli30 Год назад
Lo escribo en español para que se diviertan traduciendo: Muchas gracias por todos tus conocimientos; he interpretado cada concepto y lo he aplicado con "mis palabras", o a mi manera, y son muy útiles en los programas que estoy haciendo. Es invaluable la calidad de contenido que expones, muchas gracias nuevamente! Saludos desde Argentina!
@Dani_Krossing
@Dani_Krossing Год назад
De nada. Me alegra que hayas disfrutado de mis videos. :)
@johnsmart1823
@johnsmart1823 Год назад
@@Dani_Krossing I need a php mentor that will give me tasks, work on projects.. Any advice please
@kesemolatlhegi7108
@kesemolatlhegi7108 8 месяцев назад
this code works only if you are not lazy to find your typos the man is legit
2 года назад
I'm learning a lot from you. Just so you know.
@laenetmoloto9716
@laenetmoloto9716 2 года назад
Just What I've been looking for🙂🙂🙂
@almojaiderbakal3529
@almojaiderbakal3529 2 года назад
Thank you for making this video available and free.
@fillable
@fillable Год назад
i forgot a -> and holy it took me long to find the issue haha. great tutorial man i'm currently taking a speedcourse in OOP PHP and this helped me understand my homework alot better.
@DavidAshby1
@DavidAshby1 Год назад
Excellent tutorial as always. Thank you!
@sean.ydegen5975
@sean.ydegen5975 2 года назад
Solid Tutorial. Helped alot thanks Dani
@AozenDreyar
@AozenDreyar 2 года назад
my brain fried at around 40 minutes but yes sitting 1 hour through any tutorial is not easy XD but i love your content
@mohammadaliqurbani453
@mohammadaliqurbani453 2 года назад
awesome tutorial, your tutorials are the best, thanks for uploading php tutorial again.
@pvd4170
@pvd4170 Год назад
Thank you very much for a great tutorial! Learned a lot from you!
@user-lg3ct3wt2w
@user-lg3ct3wt2w 17 дней назад
Hello, Dani I hope you're doing well. I wanted to take a moment to express my sincere gratitude for the course you provided. The level of preparation, effort, and dedication you showcased throughout was truly commendable. I appreciated it! Keep it up, Man! Again! Thank you, Dani! From PHP PDO Procedural to PHP OOP & MVC Pattern! Hooray! I can now start to create my personal project to apply and explore what I've learned.. :D
@itwebadmin
@itwebadmin 2 года назад
Yeah we need more PHP, that login tut from last year put me on the map when I started Laravel PHP...I was worried there for a sec, like you had switched professions...Like a pro gamer or something...
@poh3310
@poh3310 Месяц назад
Thank you my friend for guiding me through the oop world
@rangingaway92
@rangingaway92 10 месяцев назад
I use pdo for procedural php as well. Zero issues, works like a charm. So don't know why you say that. Other than that great video! Helping my php OOP.
@ahmederrajaai3585
@ahmederrajaai3585 2 года назад
Thank you man , you was wonderful .
@andresjacome2243
@andresjacome2243 2 года назад
Dani: **explains the things people get confused about (CSS files, naming conventions, etc)** Me, who watched the procedural login system video literally 5 hours ago: heh, plebs.
@bekindhavepassion3649
@bekindhavepassion3649 2 года назад
Hello! Glad to see You!
@akt8892
@akt8892 Год назад
I just wanna say THANK YOU!
@hamidsarwary1872
@hamidsarwary1872 2 года назад
Excellent videos man, you're a true hero and a great mentor. PHP finally make sense. I wonder if you have any plans for creating videos on how to further use this login system? Such as resetting, editing profile details, and data relations the oop way?
@hamidsarwary1872
@hamidsarwary1872 2 года назад
And of course some security measures would be interesting
@aijiexi
@aijiexi 10 месяцев назад
I worked for a company that promised to train me to code if I dedicated 2 years to the company at an under-market wage in consideration of my training. I passed all of their pre-training modules and was hired...only to be fired after three weeks. I was devastated. I had already invested months of time and energy in their system, and I liked what I was learning. I wondered why I could not understand much of what the instructor taught when I could understand all of the previous modules I learned including OOP. I almost let myself believe I wasn't cut out for coding. After I watched your videos, I know I was bullied/discriminated against. You explained everything you did with the proper technical terms and explained at a fairly rapid pace. Yet, I understood exactly every step you took. With a bit of review, I am confident I can create a login system based on this and other tutorials you have prepared. Thank you. I will not go into all of the protected classes I belong to or begin a soap-box lecture on the state of the employment environment in STEM fields. Your videos have given me the steam to keep going. Again, thank you. I am now a subscriber.
@dotterel
@dotterel 10 месяцев назад
Hey, I just read your story. Would you like to workin my company? It would be remotely as the job is in New Zealand. The first year will be an unpaid internship, but we promise the ability to grow into a six figure salary within the first 2 years of working with us. Let me know :). -Jamie, Backend Dev - Xero.
@royssansalinas2125
@royssansalinas2125 2 года назад
Thank you so much for this, but I still have an error. just try to figure it out myself, thank you again DANI!! you are the best.
@yeapxiangwei6320
@yeapxiangwei6320 2 года назад
I'm just watching your 1st video of create login system by php, and I'm going to watch your second video of login system, now is coming out a new video of create login system🤣🤣
@joobastudio
@joobastudio 2 года назад
Thanks a lot for this lesson !
@moisescastillo3447
@moisescastillo3447 2 года назад
Dani, what a good video, thanks for this quality of material, please continue to share your knowledge in this way about opp php pdo, I like the didactic way you explain, I will be anxious waiting for the next thing you will upload
@hayatzee8830
@hayatzee8830 Год назад
So much gratitude here for you.
@batbeo7423
@batbeo7423 2 года назад
you come back yeahhh
@ikechukwualita521
@ikechukwualita521 Год назад
super great as usual Daniel. keep it coming please make video on CRUD in php
@madhawapiumika4037
@madhawapiumika4037 Год назад
Reaaaaaalllly Nice vid.. Thanks. I'm starting to Dump partial Procedural and go full on with OOP
@danylfilatov
@danylfilatov Год назад
Thanks a lot, very good intro course for oop php :)
@sabaideestory7182
@sabaideestory7182 2 года назад
Clearly and Greate to follow
@Flutter360
@Flutter360 2 года назад
it is worked with me and thank you so much I'm waiting your next vidio.
@abdullashafi580
@abdullashafi580 2 года назад
yay, the boss is back again.!! hey do you know python / Django? if you know so please make tutorials also on Django!!
@BobAg_
@BobAg_ 2 года назад
Great content, as always. It's always interesting to see different approaches. I always start at the database level and abstract upwards from there. Your programming content is awesome.
@MrTimm
@MrTimm Год назад
great video, i was able to convert my plane PHP code to proper PHP code.
@alejandropech6219
@alejandropech6219 2 года назад
Hi Dani, nice lesson... do you recommend use ajax to handle error inputs instead handle in the classes? thanks
@emilandersen6865
@emilandersen6865 2 года назад
Hi Dani. Thanks for making this video. Why don't you use frameworks such as React?
@p.d5967
@p.d5967 2 года назад
nice work man
@giuseppe2712
@giuseppe2712 2 года назад
Thank you very much!
@chaddsmith3354
@chaddsmith3354 Год назад
Thank you very much for the videos!!
@mcmehdi8782
@mcmehdi8782 5 дней назад
im very greatfull for ur course ty sir Dani
@aleksandresologhashvili104
@aleksandresologhashvili104 2 года назад
Very good tutorial.
@RomanBehroz
@RomanBehroz 9 месяцев назад
Well thank you for the effort, nice video for beginners. Important thing about inheritance is, I mean when he uses extends, it is not totally correct how he uses it. Well it works But...! When a class extends another class, it means the class is now a child of that class which he extended. So making your controller extend your model class, doesn't really make sense because they are two different things and have different purposes. A better way is to use composition, which means to create an object of your signup model in your controller constructor and then access the methods of the signup class through your created object.
@onee
@onee 2 года назад
Finally managed to run it successfully! Mine doesn't look as good as yours, but it does the job, and that's what counts. :) For the people who claim to have done everything like Dani, but still get errors, make sure to actually read those errors. They often point you to the right line. And even if you think your code is the same, you might make small mistakes here and there. So, read your code carefully. Like I once wrote user instead of users. And once used a $ sign where I shouldn't use it. These are just small errors, but it can break your entire code.
@netramc5123
@netramc5123 2 года назад
I'm not getting any errors! My sumbit redirects the index page to the singup.inc.php without any errors which is odd.. This happens when I'm trying to sing up a new user, nothing's happening no errors but also no new user added to the database.
@seyedparsasedighi6990
@seyedparsasedighi6990 Год назад
@@netramc5123 how did u fix it bro im so stuck 😭😭
@markludwig5805
@markludwig5805 Год назад
Same exact issue here. Not sure how to track this down.
@neocrumbs2508
@neocrumbs2508 9 месяцев назад
@@netramc5123same how did you fixed it?
Далее
НЕ ДЕЛАЙТЕ УКЛАДКИ В САЛОНАХ
00:43
Should You Learn Object Oriented PHP?
13:48
Просмотров 10 тыс.
Signup and Login with PHP and MySQL
43:16
Просмотров 271 тыс.
PHP REST API From Scratch [1] - Database & Read
32:18
Просмотров 509 тыс.
НЕ ДЕЛАЙТЕ УКЛАДКИ В САЛОНАХ
00:43