php-mvc-framework icon indicating copy to clipboard operation
php-mvc-framework copied to clipboard

PHP MVC Framework

Results 20 php-mvc-framework issues
Sort by recently updated
recently updated
newest added

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 ![obraz](https://user-images.githubusercontent.com/29274594/160383650-aa0575bc-fae4-412f-822c-5029921bc2bc.png)

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...