Witam mam pytanie bo coś mi nie wychodzi tak jak bym chciał. czy ktoś może mi pomóc. potrzebuję zrobić linkowanie do poszczególnych plików tak by środek strony był zastępowany innym plikiem ale wyświetla mi go pod centralem.
index =>
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0" class="center_glowny">
<tr>
<td colspan="3"><?php include "include/naglowek.php"; ?></td>
</tr>
<tr>
<td valign="top"><?php include "center.php"; ?></td>
</tr>
<td width="65%" valign="top">
<?php
$go = $_GET['go'];
if(is_file("page/$go.html")) include "page/$go.html"; }
else include "page/start.html";
?>
<?php
include "include/ilnk.php";
?>
</td>
<tr>
<td colspan="3">
<?php
include "include/stopka.php";
?>
</td>
</tr>
</table>
ilnk.php =>
<?php
$go = $_GET['go'];
switch($go) {
case "index": include "index.php"; break;
case "ofirmie": include "include/omnie.php"; break;
case "6": include "include/kontakt.php"; break;
case "2": include "include/strona_3.php"; break;
case "3": include "include/strona_4.php"; break;
case "4": include "include/strona_5.php"; break;
case "5": include "include/strona_6.php"; break;
}
?>
center.php
<?php include "center_index_up.php"; ?>
<?php include "center_index_down.php"; ?>
i teraz jak zrobić by w miejscu wyświetlania pliku center.php który jest to menu wyświetlały mi się zawartości linków

przepraszam za bardzo zapewne błahy problem... i proszę o odpowiedź.