$pagea = array(
"rules" => "rules.php",
"staff" => "staff.php",
"new" => "new.php",
"registr" => "reg.php",
"newbie" => "newb.php",
"files" => "files.php",
"tables" => "tables.php",
"tq" => "tour.php",
"guilds" => "guilds.php",
"status" => "status.php"
);
function whot()
{
global $pagea;
if(!isset($_GET['act']))
{
include("news.php");
}
else
{
$act1 = $_GET['act'];
$actres = array_key_exists($act1, $pagea);
if($actres === true)
{
include($pagea[$act1]);
}
else
{
echo ("<p align='center'>Запрашиваемая страница не существует.</p>");
}
}
}