Hi Everybody, I have a problem with $PHP_SELF, it's not working with internet explorer and netscape it's undefined
Thanx
$PHP_SELF is a server variable. The fact that you are talking about IE vs NS tells me you are trying to use it in javascript? No can do unless you use PHP to assign it to a javascript variable while you are outputting the html.
Your register_globals in the php.ini might be turned to off, if so you can enable it or use $_SERVER[PHP_SELF]
Originally posted by jerdo Your register_globals in the php.ini might be turned to off, if so you can enable it or use $_SERVER[PHP_SELF]
Thanx jerdo that helped