I\'m looking for a very lightweight routing framework (to go with php-skel).
The first thing I\'d like to investigate is specifying rewrite rules in a php file (\"not fo
The php way:
http://example.com/index.php/controller/action/variables
$routing = explode("/" ,$_SERVER['PATH_INFO']); $controller = $routing[1]; $action = $routing[2]; $variables = $routing[3];