Kód:
  main page | news | server offer | statistics  | <a href=javascript&#58;history.go&#40;-1&#41;>back</a>
^^ vyrez z _header.php

Kód:
<?
        include '_header.php';
?>
<table width=100%><tr>
<td align=justify valign=top>

<?

$page = $_GET&#91;'page'&#93;;

switch &#40; $page &#41;
&#123;

 case "intro"&#58;
        include 'uvod.htm';
        include 'info.htm';
        break;

 case "services"&#58;
        include 'services.htm';
        break;
 case "about"&#58;
        include 'about.htm';
        break;
 case "stats"&#58;
        include 'stats.php';
        break;
 case "news"&#58;
        include 'news.php';
        break;


 default&#58;
        include 'uvod.htm';
        include 'info.htm';
        break;
&#125;

?>

</td>
</tr>
</table>

<?
        include '_footer.php'
?>
^^ index.php


very simple