Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- require 'system/base.php';
- require 'system/loader.php';
- $controller = isset($_GET['c']) ? $_GET['c'] : 'third';
- $method = isset($_GET['m']) ? $_GET['m'] : 'index';
- require 'aplikasi/controller/'.$controller.'.php';
- $obj_controller = new $controller;
- call_user_func_array(array($obj_controller, $method), array());
- ?>
Advertisement
Add Comment
Please, Sign In to add comment