12 lines
162 B
PHP
12 lines
162 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
require_once dirname(dirname(dirname(__FILE__))).'/lib/limonade.php';
|
||
|
|
|
||
|
|
dispatch('/', 'test');
|
||
|
|
function test()
|
||
|
|
{
|
||
|
|
return render(session_name());
|
||
|
|
}
|
||
|
|
|
||
|
|
run();
|