RE: [PHP-INSTALL] $PHP_SELF

2003-09-30 Thread Rob A Brooks
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

Re: [PHP-INSTALL] $PHP_SELF

2003-09-29 Thread Joe Laffey
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