//echo "Path translated: ".$_SERVER['PATH_TRANSLATED']."
Query String: ".$_SERVER['QUERY_STRING']."
Request_URI ".$_SERVER['REQUEST_URI']."
PATH_INFO :".$_SERVER['PATH_INFO'];
$allVars = explode("/", $_SERVER['PATH_INFO']);
$totalVars = count($allVars);
$var1 = $allVars[1];
$var2 = $allVars[2];
if ($totalVars == "0")
{
include("index.php");
exit;
}
if ($allVars[1] == "music")
{
include("links.php");
exit;
}
include("recip.php");
exit;
?>