blob: 854df0be782d626e4c0848a09529046bac5d2666 (
plain) (
tree)
|
|
<?php
require_once "controller/root.control.php";
/*
* Entry-point to app. Grab the requested path and pass it to the root app controller.
*/
function main($argv)
{
/* TODO */
echo "Scrott!<br />";
}
main(explode("/", $_REQUEST['path'])); // Start rendering web page for the requested path.
?>
|