A Simple Blog or Social Media with my MVC Framework
Out of the box Start comes with :
- spl autoloading
- Single Entry Point PHP
- Helpers
http://example.io/{controller}/{method}/{param1?}/
- All Controllers extend the controller class..
- To call a model in your controller class .. type
$this->model('{your_model'})
- To Create a model just type php start make:model {your model}