<?
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");// always modified
header ("Cache-Control: no-cache, must-revalidate");// HTTP/1.1
header ("Pragma: no-cache");// HTTP/1.0
// Do not add any code above the anticache headers!
$homename = "";
// Add a name for your site's "home" directory (between the double quotes).
// Leave it blank if you don't want it shown.
echo ("<font face=verdana>");
$path = getenv(SCRIPT_NAME);
$mark = "/";
$position = strrpos($path,$mark);
$str = substr($path,1,$position);
$pat ="/";
$arr_str = split($pat,$str);
$count = count($arr_str);
for ($x=0;$x<($count-1);$x++) {
if ($x == 0) {
$url = "$arr_str[$x]/";
}
elseif ($x > 0) {
$url = ("$url" . "$arr_str[$x]/");
}
$linkpath = "$linkpath" . " <font color=gold>></font> ";
$linkpath = "$linkpath" . "<a href=/$url>$arr_str[$x]</a>";
}
if ($homename == "") {
echo ("$linkpath\n\t\t<p>");
} else {
echo ("<a href=\"/\">$homename</a>$linkpath\n\t\t<p>");
}
echo ("</font>");
?>