This is true. 😃
Here is content.php.
<?php
//Content for the navigation bar.
$_GET['id'];
switch ($id)
{
case 1:
include("index.php");
break;
case 2:
include("roster.htm");
break;
case 3:
include("league.htm");
break;
case 4:
include("match.htm");
break;
case 5:
include("schedule.htm");
break;
case 6:
include("challenge.htm");
break;
case 7:
include("join.htm");
break;
case 8:
include("newpost.php");
break;
case 9:
include("delete.htm");
break;
case 10:
include("forums.htm");
break;
case 11:
include("servers.htm");
break;
case 12:
include("rules.htm");
break;
case 13:
include("contact.htm");
break;
default; break;
}
?>
And here is my code calling content.php.
<div id="NpdTab" style="position:absolute; left:512px; top:330px; width:100px; height:15px; z-index:12" class="pdTab">
<div align="center"><a href="http://localhost:8080/tests/content.php?id=8" class="pdLink">new
post</a> </div>
Thanks!