Тёмный

Build A Login System in PHP With MVC & PDO | Includes Forgotten Password 

Qixotl LFC
Подписаться 1,8 тыс.
Просмотров 38 тыс.
50% 1

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

 

6 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 35   
@luisguilherme2403
@luisguilherme2403 7 месяцев назад
Super dynamic without wasting typing time, as quick as can be without missing one single bit of information. Awesome tutorial and delivers even more than the expected
@GetMoGaming
@GetMoGaming Месяц назад
What qualifications do you have, Luke? Just curious. This is great because instead of watching five tutorials and then tryna join it all up (and failing), you do it all in one vid. Excellent. You also helped me with other little questions, like _should I click the services 'X' in XAMPP,_ and _how do I pronounce 'SQL'_ (I was saying "Squiggle"). As a side-note, your voice. It's very... droney lol. Are u a robot? Would u tell us though if you were? 🤔 I'll level with you; I think you're a robot 🤖🖖😜🖖🤖
@photoinshot1355
@photoinshot1355 Год назад
Great tutorial, very detailed and advanced login system, thanks! I will need to go over it a few more times to fully understand it as I am new to php and oop. I Thanks again for a very informative, detailed, practical, and useful tutorial. First class!
@esleiterramirobustamanteat4973
@esleiterramirobustamanteat4973 2 года назад
Thank you. I learned how to clean the data that is sent from the form to the process that runs with php.
@yulib2930
@yulib2930 2 года назад
Thank you for the video. It's really the best tutorial I've ever found.
@GetMoGaming
@GetMoGaming Месяц назад
Couldn't you use the hidden field's 'type' value to automatically set the flash() 'name' parameter when a request is posted?
@siegfriedschmitz5260
@siegfriedschmitz5260 3 месяца назад
thank you, exactly what i was looking for.
@HustleAndStrum
@HustleAndStrum 2 года назад
PDO definitely rocks. I have seen the light.
@talhaipek8629
@talhaipek8629 3 года назад
Thanks for the instructional video. How can I run it on real server, except localhost.
@oscarl06
@oscarl06 3 года назад
easy to follow, definitely needed a tutorial like this
@lukechopper22
@lukechopper22 3 года назад
Thanks bro.
@davidarmand9481
@davidarmand9481 8 месяцев назад
Great Tutorial, thx. Next, how to implement a check is a user is looged in , in all the various page of my website...and redirect to login screen if not authenticated. thx
@MikhailRedkin-c5s
@MikhailRedkin-c5s 2 года назад
You are the best! rly it was very helpful. i bookmarked your lesson
@GetMoGaming
@GetMoGaming Месяц назад
I tried scrolling the VS code app in the video
@DA-sz5fr
@DA-sz5fr 2 года назад
At 41:25 when you create the if statement for the deleteEmail($usersEmail) condition, I am confused as to how it would not execute the die("There was an error") the first time the user clicks on the send email button. If the user clicks on the button the first time, since this delete function is called before the insertToken() function - the first time a user enters their email to the input there will not be any row to delete from the table since the insertion occurs after that statement, thus the die("There was an error") should execute the first time around. I am confused as to how it is not happening, any explanation would be appreciated, thank you. Edit: My apologies, I just realised PDO::execute() will still return true even if the WHERE condition does not successfully find any corresponding values. I'll leave this comment up if anyone made a similar mistake.
@NedumEze
@NedumEze 2 года назад
Fabulous, Luke. Thanks a million
@jonkicker1278
@jonkicker1278 19 дней назад
Thank you, this is very helpful.
@elJohnnySilva
@elJohnnySilva 2 года назад
Thank you for the video. Your tutorial was by far the best I've found. Keep it up dude Subbed.
@GetMoGaming
@GetMoGaming Месяц назад
Is it ok to use mySQLi instead of PDO? Because I have my DB connection sorted (and injection safe), so I don't want to add drivers I don't need. Thanks.
@CaptainAwesomeVlog
@CaptainAwesomeVlog 2 года назад
Questions. 1) Is there a reason to use varchar(128) rather than tinytext for username, useremail, userpassword? I watched one tutorial in which the guy used tinytext, so I'm uncertain. 2) Is there a reason why everyone is using int(11) for user IDs? Why not 12, for example?
@lukechopper22
@lukechopper22 2 года назад
Not going to lie, with storage space in abundance nowadays, these don't really matter. The important thing to make sure that the type that you do use is large enough to hold all of the data that you want to hold.
@AdamVisitew
@AdamVisitew Год назад
it took the d ay to get the it setup and working.... im new to this though.... like the layout. gonna try to use PHP more object orientated
@CaptainAwesomeVlog
@CaptainAwesomeVlog 2 года назад
Very comprehensive. Well done.
@cristobalmaldonado6028
@cristobalmaldonado6028 3 года назад
thank you so much
@CaptainAwesomeVlog
@CaptainAwesomeVlog 2 года назад
Hello. I have customised this to suit my purposes, and it's great. However, I have a question. What is the neatest and best way to connect to the db for a form to search usersName to find users?
@alexisaubreybrusola4692
@alexisaubreybrusola4692 Год назад
I'm following the tutorial this 2023, in 17:12 the FILTER_SANITIZE_STRING is deprecated. Is there any other solution?
@pittbrad1605
@pittbrad1605 2 года назад
have some problem in phpmailer section,I just change the phpmailer setting,but it doesn't work.Is there anything esle that needs to be changed?
@learntoswim512
@learntoswim512 2 года назад
Question about "$_POST = filter_input_array(INPUT_POST, FILTER_SANITIZE_STRING);" What do you use now that FILTER_SANITIZE_STRING is deprecated? Thanks.
@thecoder6348
@thecoder6348 2 года назад
$_POST = filter_input_array(INPUT_POST, FILTER_UNSAFE_RAW);
@alexgora7530
@alexgora7530 2 года назад
hello dear friend, what about database structure of your project? I've got an error like this " 'my_project.pwdreset' doesn't exist"? what are the fields I need to create to make project working? Thanks in advance! )
@nigelpallatt
@nigelpallatt 2 года назад
No, for ref: edits PHP main.
@andreiviscayno3469
@andreiviscayno3469 3 года назад
How to change to gmail smtp?
@birukindrias4308
@birukindrias4308 3 года назад
Please is the php -v = 8
@joshdevofficial
@joshdevofficial 9 месяцев назад
its not a mvc framework. Its a simple oop
Далее
Build an AJAX Contact Form in PHP That Sends Emails
47:19
НЮША УСПОКОИЛА КОТЯТ#cat
00:43
Просмотров 1 млн
PUBG MOBILE | Metro Royale: Fun Moments #4
00:16
Просмотров 132 тыс.
Epic Reflex Game vs MrBeast Crew 🙈😱
00:32
Просмотров 2,9 млн
Realtime Chat App in React Native and AWS (Backend) 🔴
3:29:01
Signup and Login with PHP and MySQL
43:16
Просмотров 282 тыс.
PHP For Beginners, Ep 15 - Make a PHP Router
18:03
Просмотров 57 тыс.
Building the Ultimate Nike App in React Native & Redux
3:33:55
PDO Crash Course (PHP)
45:35
Просмотров 277 тыс.