> So sprach »Arcadius  A.« am 2001-08-31 um 05:27:04 -0700 :
> > $u = $SCRIPT_FILENAME;
> Because you did not define $SCRIPT_FILENAME anywhere.  If you want to
> access the global variable, you've got to say so:
> global $SCRIPT_FILENAME;

Or, so you don't have to specify all the variables you are using 
as globals (especially if you are using *alot* of them), you can 
use:

$GLOBALS[SCRIPT_FILENAME];

Chris

Reply via email to