That is exactly what I was looking for!!!
Thank you very very much! I had all kinds of script going on trying to re-invent the breadcrumb technique in php.
<?php
$cwd = getcwd();
$dir = substr(strrchr($cwd, "/"), 1);
$location = substr("$title",0,strpos($title, '|'));
if ($location != "Home "){
echo "<h5>You Are Here:</h5>";
echo "<a href='http://somesite.org' >Home</a> \ <a href='index.php'>" . ucfirst($dir) . "</a>" . " \ " . $location;
}
?>
This pretty much created my breadcrumb on every page execpt the home page, but with one little caviat - instead of echoing the folder name for $dir, the script code output "public_html".