ID: 12310
Updated by: cnewbill
Reported By: [EMAIL PROTECTED]
Status: Bogus
Bug Type: Variables related
Operating System: WinNT IIS
PHP Version: 4.0.6
New Comment:

I'm assuming you want to be able to call these includes, and you think you need to 
know the path?

IMO, there is a much cleaner way that you can use regardless of your current working 
directory.

Create a directory where all your scripts will go, for example C:\Inetpub\php\.  
Modify your include_path to include our new directory C:\Inetpub\php.  Move your 
"inc/" directory to this new directory.

Now your code can be
<?php
include("inc/navi_d.inc");
?>
no matter what directory you are in.  You just need to make sure you have your path 
setup in the order you want it processed in, otherwise if you have an inc/navi_d.inc 
in your current working dir it will use that one first.  Which is also good in some 
cases.

I've honestly never used $SCRIPT_FILENAME, I've always used $PHP_SELF or one of the 
HTTP_SERVER_VARS.

-Chris

Previous Comments:
------------------------------------------------------------------------

[2001-07-22 21:24:03] [EMAIL PROTECTED]

Hi

i just made a page with

<?php

phpinfo();

?>


http://frifra.dtdns.net:8082/informatik/test.php



------------------------------------------------------------------------

[2001-07-22 20:35:21] [EMAIL PROTECTED]

make sure you have a big mailbox if you subscribe to this mailing list.

You get lots of messages...

------------------------------------------------------------------------

[2001-07-22 20:30:59] [EMAIL PROTECTED]

One last remark before I definitely leave this PR:
Michael, you might also want to subscribe to php-general@,
that can be done by sending an empty email to [EMAIL PROTECTED]

------------------------------------------------------------------------

[2001-07-22 20:26:58] [EMAIL PROTECTED]

ya...

Sorry about my remark.

If you create a page like cnewbill said, you can see all of environmental
variables, server variables, etc... that PHP defines.

Also, as cynic said check out the documentation at

http://www.php.net/docs.php

Hopefully you can get it to work...

------------------------------------------------------------------------

[2001-07-22 20:21:16] [EMAIL PROTECTED]

Ouch Andy, that seemed pretty harsh.

Anyways,  do you have a page up I can look at with phpinfo() in it?  If not just make 
a quick page like so

<?php
phpinfo();
?>

-Chris

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/?id=12310


Edit this bug report at http://bugs.php.net/?id=12310&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to