On Tue, 2002-03-12 at 15:13, David Johansen wrote:
> I'm doing exactly what you said and here's what it says when I call
> $PHP_SELF in the include file:
> 
> http://12.254.227.149/<br><b>Warning</b>:%20%20Undefined%20variable:%20%20PH
> P_SELF%20in%20<b>c:/inetpub/wwwroot/pages.inc</b>%20on%20line%20<b>35</b><br
> >?page=questions

You probably have register_globals turned off, as it should be. In 
versions of PHP from 4.1.0 onward, it's off by default; see 
http://www.php.net/release_4_1_0.php for more information.

In short, try $_SERVER['PHP_SELF'] and see what you get.


Hope this helps,

Torben

> "Lars Torben Wilson" <[EMAIL PROTECTED]> wrote in message
> 1015974570.2134.94.camel@ali">news:1015974570.2134.94.camel@ali...
> > On Tue, 2002-03-12 at 15:02, David Johansen wrote:
> > > Is there a way that I can use $PHP_SELF in include files, so that the
> > > function will use the URL of the php script that calls the include file?
> > > Thanks,
> > > Dave
> >
> > If a.php includes b.php, and you check $PHP_SELF in b.php, it should
> > give you the path to a.php. What result are you getting?
> >
> >
> > --
> >  Torben Wilson <[EMAIL PROTECTED]>
> >  http://www.thebuttlesschaps.com
> >  http://www.hybrid17.com
> >  http://www.inflatableeye.com
> >  +1.604.709.0506
> >
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
-- 
 Torben Wilson <[EMAIL PROTECTED]>
 http://www.thebuttlesschaps.com
 http://www.hybrid17.com
 http://www.inflatableeye.com
 +1.604.709.0506


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to