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.
@mawudzrohounnake6422 Жыл бұрын
Our framework is growing 😊 Cool
@محمدعثمانخان-و1ه Жыл бұрын
Thanks again for sharing such beautiful learning content for people like us. You are so kind.
@QuickProgramming Жыл бұрын
My pleasure!
@pratikbhujel Жыл бұрын
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.
@MinhazTaher Жыл бұрын
❤wating for part 3❤❤
@QuickProgramming Жыл бұрын
Cool
@RitcheMontenegro Жыл бұрын
thank you, i will follow your framework structure.
@QuickProgramming Жыл бұрын
You are most welcome! and thanks for the feedback
@dtommy79 Жыл бұрын
Great update! Please add seeding to the next as well.
@tsjaanaa9242 Жыл бұрын
THis is awesome, could you please make a tutorial on how to put Google adverts on a website
@gru8299 Жыл бұрын
Thank you very much!!!👏
@QuickProgramming Жыл бұрын
you're most welcome
@guyrandalf711 Жыл бұрын
This is amazing. By the way, I was wondering, how we can build API endpoints with this framework. Have you considered this?
@Big_Dot_Inc Жыл бұрын
Thank you .
@QuickProgramming Жыл бұрын
you're most welcome :)
@codobyte Жыл бұрын
I have a question. Should redirect not be handled by the conrollers instead of in the model?
@QuickProgramming Жыл бұрын
yes, redirect is better in the controller and not the model. However these are simply best practices and are in no way written in stone. So you can pretty much do whatever you want in any file. The only reason we follow best practices to make it easier to fix problems in future. So if you can still fix problems easily, you can design any kind of pattern you want. But for me, i keep redirection in the controller
@lloydnorbal3393 Жыл бұрын
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?
@QuickProgramming Жыл бұрын
yes, adding email verification and remember me features would make sense. as for the validation, each class has a separate table, and each table needs separate validation rules so adding the validation to the user class is fine
@stevenkeithmanalo271 Жыл бұрын
Hello can you help me upload my PHP MVC (public private folders) website to a live host
@dtommy79 Жыл бұрын
I think he showed it in a previous video.
@nagapenumaka9257 Жыл бұрын
drive development completed sir?
@QuickProgramming Жыл бұрын
not yet, new videos coming soon
@syntaxbytesolutions5565 Жыл бұрын
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; }
@QuickProgramming Жыл бұрын
Probably the extract() function was missing from your version
@syntaxbytesolutions5565 Жыл бұрын
@@QuickProgramming Okay Please the project buit with it is not fully working on Live Server. I am using Shared Hosting, I also changes the root folder to /public but only the homepage can be accessible, other pages showing error 404