summaryrefslogblamecommitdiffstats
path: root/app/index.php
blob: 5f2d9f4728b07b4b2fd9a2e31c1607e6c4d26568 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                      
                                                                                          

  
<?php

include_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.

?>