t3[0one]
Новичок
<Фанат
вот так
вот так
PHP:
<?
function header_foo($txt, $file){
echo"
<html>
<head>
<title>$txt</title>
</head>
<body>
";
include_once($file);
}
function footer_foo(){
echo"
</body>
</html>
";
}
if (!isset( $_GET['varible'])){
$_GET['varible']='';
}
switch( $_GET['varible'] )
{
case "variant1" :header_foo("Первый вариант","variant1.php");break;
case "variant2" :header_foo("Второй вариант","variant2.php");break;
default : header_foo("Дефаулт страница","default.php");
break;
}
footer_foo();
?>