micro-mvc-php
a micro mvc framework for php
- Config your Web url in .env .
lifecycle
All request proccess by index.php
Autoload files include in bootstrap/init.php
BASE_URL IS DEFINE IN init.php => it is the root web url
you can customize your specific routes in file App/Core/Router.php in PATHS CONST
you can customize 404 page url in file App/Core/Router.php in NOT_FOUND CONST
####ParametersYou have access to url query strings with 2 ways
####### For exampleOur url: www.test.com?name=amir
-
(new \App\Core\Request)->name
-
(new \App\Core\Request)->input('name')