A Simple Blog or Social Media with my MVC Framework

Out of the box Start comes with :

  • spl autoloading
  • Single Entry Point PHP
  • Helpers

2- Routing

http://example.io/{controller}/{method}/{param1?}/

3- Controllers

  • All Controllers extend the controller class..
  • To call a model in your controller class .. type $this->model('{your_model'})

4- Model

  • To Create a model just type php start make:model {your model}