Yeah, I have a file 'class_nav.php' that contains the links class and all the PHP_SELF coding. Then I have a file 'business_templates.php' with include('class_nav.php').
I was hoping that what you said was true about $PHP_SELF working from the url.
Would there be a difference between:
<a href='$PHP_SELF&var=$var'></a>
and
<a href='$_SERVER['PHP_SELF']&var=$var
Could they be like that in a included file (class_nav.php) and work for the file calling the include(business_templates.php)???