Hello everybody, I'm new in this forum.
I really need your help.
The problem with my website is that I delete some code from the main part and know doesn't navigate to the rest of the pages. To understand it more I give to you the website and the code I delete.
the website is
www.saundersheritage.com
and the original code was this:
<table width="100%" border="0">
<tr>
<td id="header" height="175" colspan="3">
<?php include("header.inc.php"); ?></td>
</tr>
<tr>
<td id="nav" width="15%" valign="top">
<?php include("nav.inc.php"); ?></td>
<td id="main" width="55%" valign="top">
<?php include("main.inc.php"); ?></td>
<td id="news" width="30%" valign="top">
<?php include("news.inc.php"); ?></td>
</tr>
<tr>
<td id="footer" colspan="3"> <div align="center">
<?php include("footer.inc.php"); ?> </div></td>
</tr>
</table>
</body>
</html>
The part that I delete
<table width="100%" border="0">
<tr>
<td id="header" height="175" colspan="3">
<?php include("header.inc.php"); ?></td>
</tr>
<tr>
<td id="nav" width="15%" valign="top">
<?php include("nav.inc.php"); ?></td>
<td id="main" width="55%" valign="top">
<?php
if (!isset($_REQUEST['content']))
include("main.inc.php");
else
{
$content = $_REQUEST['content'];
$nextpage = $content . ".inc.php";
include($nextpage);
} ?></td>
<td id="news" width="30%" valign="top">
<?php include("news.inc.php"); ?></td>
</tr>
<tr>
<td id="footer" colspan="3"> <div align="center">
<?php include("footer.inc.php"); ?> </div></td>
</tr>
The problem
Don't show any of the other pages
The solution
I hope you can find another to write this code. thank you.