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); ?>