Try $_SERVER['PHP_SELF']
If you don't have 'register_globals = on' setting in your php.ini file
then you must reference these special server variables in this way.
It's generally a good idea to leave 'register_globals = off' and
identify the global variables either by $_SERVER['varname'] or
$_POS
On Mon, 29 Sep 2003, Adam Dear wrote:
> I have just installed php. I am new to php. I have read several items(ie.
> books, online documentation). I have seen references to a variable called
> $PHP_SELF. I have tried to use it in a form, but to no avail.
>
> Here is a line of code where I have