Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?
$script = trim($_SERVER["SCRIPT_NAME"]);
$myArr = explode("/", $script);
$fullDepth = count($myArr);
$html = '<a href="/">Home</a>';
for ($loop=1; $loop<$fullDepth-1; $loop++) {
$html .= ' > ';
$html .= '<a href="/'.$myArr[$loop].'/">'.ucfirst($myArr[$loop]).'</a>';
}
$html .= ' > ';
$html .= '<b>'.$myArr[$loop].'</b>';
echo $html;
?>