
Untitled
By: a guest on
Aug 21st, 2012 | syntax:
None | size: 0.42 KB | hits: 19 | expires: Never
<?php
$app = new Slim();
//routes here
$app->get('/', 'home');
$app->get('/hi/:first(/)', 'hi');
$app->get('/test(/)', 'test');
$app->run();
//controllers here!
function home(){
global $config;
$title = "Hello World";
require $config->viewsPath . "header.php";
require $config->viewsPath . "home.php";
require $config->viewsPath . "footer.php";
}
function hi($first){
echo "hi $first";
}
function test(){
phpinfo();
}
?>