<a href="#link">link</a>
<a name="link">Link</a>
<a href="page.html#link">link</a>
<?php
if(isset($_GET["show"]))
{
$show = $_GET["show"];
switch($show)
{
case "DVD":
$load = "dvd";
break;
case "Video":
$load = "video";
break;
default:
$load = "default";
}//End of switch($show)
//Load the page outputted from the switch statement
require_once "$load.php";
}//End of if(isset($_GET["show"]))
else
{
require_once "default.php";
}
?>