php-mvc-framework
php-mvc-framework copied to clipboard
PHP MVC Framework
Thanks again for all this great contribution. Your tutorials are excellent. I would like to ask a question. Is it a good idea to have multiple controllers to distribute the...
### Added an alternate way to serve the app using the terminal command `php codeholic serve` From the root directory, where `README.md` file is located, you can now run the...
I tried to adjust your code to allow for a bespoke sql with INNER JOIN. However there is an issue with integrity constraint on where. How would we get over...
Fatal error: Uncaught Error: Non-static method thecodeholic\phpmvc\db\DbModel::primaryKey() cannot be called statically in C:\wamp64\www\link\vendor\thecodeholic\php-mvc-core\Application.php on line 54 
i love your tutorials and i deploy some of them i tried this one 4 month ago
I would like to load the **CONTACT** form and others, **without creating an instance of the Session class**. Does anyone have a good idea? Help please @thecodeholic!
Hello there, thanks a lot for the the great course and the lovely educational materials. I`m learning an experimenting with the framework and couldn`t figure out how to modify the...
The down method now executes this SQL: "ALTER TABLE users ADD COLUMN password VARCHAR(512) NOT NULL" Should be: "ALTER TABLE users DROP COLUMN password"
Php8 does not accept `$app->router->post('/contact', [SiteController::class, 'handleContact']);` It accepts `$app->router->post('/contact', [new SiteController(), 'handleContact']);` The problem occurs if you are building the framework following the steps in the video. It is...