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

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

Quick Programming

1 год назад

4,614 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@tsjaanaa9242
@tsjaanaa9242 - 16.11.2023 19:50

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

Ответить
@RitcheMontenegro
@RitcheMontenegro - 16.10.2023 03:46

thank you, i will follow your framework structure.

Ответить
@Big_Dot_Inc
@Big_Dot_Inc - 19.08.2023 05:22

Thank you .

Ответить
@codobyte
@codobyte - 03.08.2023 11:41

I have a question.

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

Ответить
@syntaxbytesolutions5565
@syntaxbytesolutions5565 - 27.04.2023 15:57

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 = __DIR__.'/../view/'.$filename.'.php';
if (!file_exists($file_path))return;

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

Ответить
@gru8299
@gru8299 - 24.04.2023 18:06

Thank you very much!!!👏

Ответить
@guyrandalf711
@guyrandalf711 - 20.04.2023 12:48

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

Ответить
@minhaztaher4345
@minhaztaher4345 - 16.04.2023 19:57

❤wating for part 3❤❤

Ответить
@dtommy79
@dtommy79 - 09.04.2023 14:36

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

Ответить
@lloydnorbal3393
@lloydnorbal3393 - 07.04.2023 23:53

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?

Ответить
@nagapenumaka9257
@nagapenumaka9257 - 07.04.2023 14:03

drive development completed sir?

Ответить
@mawudzrohounnake6422
@mawudzrohounnake6422 - 06.04.2023 00:10

Our framework is growing 😊
Cool

Ответить
@stevenkeithmanalo271
@stevenkeithmanalo271 - 04.04.2023 18:22

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

Ответить
@pratikbhujel
@pratikbhujel - 03.04.2023 21:39

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.

Ответить
@Saboor-Hamedi
@Saboor-Hamedi - 03.04.2023 18:04

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.

Ответить
@user-je1tt5vo9y
@user-je1tt5vo9y - 03.04.2023 17:05

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

Ответить