if ( !isset( $_GET['action'] ) ) $_GET['action'] = 'firstpage';
$actions = array(
firstpage,
getform,
form );
if ( !in_array( $_GET['action'], $actions ) ) $_GET['action'] = 'firstpage';
switch ( $_GET['action'] )
{
case 'firstpage': // главная страница к примеру
$content = getgeneralpage();
break;
case 'getform':
$content = getform();
break;
case 'form':
$content = obrabothcikformi();
break;
default:
$content = getgeneralpage();
}
$menu = menu();
$html = file_get_contents( 'default.html' );
$html = str_replace( '{menu}', $menu, $html );
$html = str_replace( '{content}', $content, $html );
return $html;