here is the situation:
i have a directory
/htdocs/root/stuff/sampleurl.php that i made a navigation script for.
within this page part of my nav script calls a page that resides in the root directory...but instead of pointing there it points to the directory the script is in. that all makes sense to me..but i can not quite figure the code to make is go back a directory to "root". any tips?
<?PHP
echo "<a href=\"contact.php\">";
echo "Contact Us";
echo "</a>";
?>