PHP MVC Framework from scratch | Update#2 | Source code included | Quick programming tutorial

preview_player
Показать описание
More updates to the PHP Framework we made earlier from scratch. We will add more functionality for input validation, login and signup default functionality too. We'll be using this Framework as the base for future practical projects

Original tutorial:

Final source code:

more tutorials:
HTML basics tutorial:

Absolute beginner PHP with practical project:

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:
Рекомендации по теме
Комментарии
Автор

This is amazing, it's been long time, I don't use php, I am super busy with my master degree. Lucky this evening I start watching one of your mvc video, which is 3 hours long.

Saboor-Hamedi
Автор

Thanks again for sharing such beautiful learning content for people like us. You are so kind.

محمدعثمانخان-وه
Автор

Please Keep making these contents. I request you to do some minor projects like using DataTable . Teaching some Jquery will be very handy. Thank you very very much sir.

pratikbhujel
Автор

thank you, i will follow your framework structure.

RitcheMontenegro
Автор

Great update! Please add seeding to the next as well.

dtommy
Автор

THis is awesome, could you please make a tutorial on how to put Google adverts on a website

tsjaanaa
Автор

This is amazing.
By the way, I was wondering, how we can build API endpoints with this framework. Have you considered this?

guyrandalf
Автор

I have a question.

Should redirect not be handled by the conrollers instead of in the model?

codobyte
Автор

Going through this update, I was just thinking. Would it be better if the validation was a class by itself, and the user was in a seperate class, because apart from the user functions like login and signup. what if one wants to validate input from a contact form or any other input types. Also would it make sense to add email verification, password reset, remember me feature etc to the user class?

lloydnorbal
Автор

Hello can you help me upload my PHP MVC (public private folders) website to a live host

stevenkeithmanalo
Автор

Hi bro, thanks for the great tutorial

the view function is not passing variable and arrays correctly to view pages.

You can use this instead:

protected function view(string $filename, array $data = []) {

$file_path =
if

extract($data); // expose each array key as a variable.
require $file_path;
}

syntaxbytesolutions
visit shbcf.ru