<?php
$number = "5";
switch($id) {
default:
include('news/show_news.php');
break; case "story":
include('story.php');
break; case "pictures":
include('pictures.php');
break; case "music":
include('music.php');
break; case "videos":
include('videos.php');
break; case "contactme":
include('contactme.php');
}
?>
The only page I have available right now is story.php, and the code I used to link to that page is this one:
<a href="?id=story">Blah</a>
When I go to my website, OverdueDeath.com, and click on "Story", it doesn't come up, please help me with this.
