EVERYTHING IS OK DONT KNOW WHY IT DOSENT WORK I THINK THERE IS PROBLEM IN 'PATH' IT SHOWS ERROR ON LINE 27 NEAR </td>
<html>
<table width='70%' align='center'>
<tr>
<td>
<img src='inc/b.png'>
</td>
</tr>
</table>
<table width='20%' align='center'>
<tr>
<td>
<a href='index.php'>Home</a><br>
<a href='index.php?page=tutorials'>Tutorials</a>
</td>
<td width='80%'>
<?php
$page=$_GET['page'];
if ($page)
{
$path = "inc/".$page.".php";
if (file_exists($path))
{
include($path);
}
else
(
echo"Page doesnt exist."
)
</td>
</tr>
</table>
</html>