| 12345678910111213 |
- <?php
- //set_include_path('./');
- //require_once("../application/config/config.php");
- include __DIR__ . "/../application/config.php";
- include_once($path["controller"]);
- $request = $_SERVER['REQUEST_URI'];
- $params = explode('/', $request);
- // Here you should probably gather the rest as params
- // Call the action
- $controller = new Controller($params);
- ?>
|