Guest User

Untitled

a guest
Aug 2nd, 2017
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. class Controller
  4. {
  5.  
  6. public function model($model)
  7. {
  8. require_once '../app/models/'.$model.'.php';
  9. return new $model();
  10. }
  11.  
  12. public function view($view, $data = [])
  13. {
  14. require_once '../app/view/'.$view.'.php';
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment