summaryrefslogtreecommitdiffstats
path: root/examples/server/server.php
blob: b7d421920532cf2901b37fe750cf1b9136f569ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

require_once 'config.php';
require_once 'lib/session.php';
require_once 'lib/actions.php';

init();

$action = getAction();
if (!function_exists($action)) {
    $action = 'action_default';
}

$resp = $action();

writeResponse($resp);

?>