Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Controller
- {
- public function model($model)
- {
- require_once '../app/models/'.$model.'.php';
- return new $model();
- }
- public function view($view, $data = [])
- {
- require_once '../app/view/'.$view.'.php';
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment