страниц
<?php
error_reporting(0);
$title='название';
include "head.php";
if(!empty($_GET['act'])){$act = $_GET
['act'];} else {$act = '';}
switch($act){
default:
//основная страница
echo "<a href=\"index.php?act=1\">первая
страница</a><br>";
echo "<a href=\"index.php?act=2\">вторая
страница</a><br>";
break;
//основная страница
//страница index.php?act=1
case '1':
break;
//страница index.php?act=1
//страница index.php?act=2
case '2':
break;
//страница index.php?act=2
}
include "foot.php";
?>