Jump to content

Need code string for "path"


Dhira

Recommended Posts

Hi all,

simple request. I need the php code string that gives me the path in a URL.

Similar to $_SERVER[SERVER_NAME], (which gives me www.domain.com.)
I would like the code that would give me "/home/username/public_html" path (which would show the actual username).

I tried $_SERVER[PATH], - didnt work. would it have 'ROOT' in there somewhere?
Link to comment
https://forums.phpfreaks.com/topic/5916-need-code-string-for-path/
Share on other sites

Thanks, but that didnt work for what I'm susing it for - it might be because the file that has that code is inside another folder. Just a giess.

Is there another option that would get the "/home/username/public_html/" path if the path is being requested from within another folder?
Create a file with this line in it:
[code]<?php p.hpinfo(); ?>[/code]
(remove the period between the p and h --- there is something really screwed up with the code parsing algorithms on this board)
Upload it to your server and invoke it. Look at all of the information returned and pick the one that most fits your needs. When I do it on one of the servers I use, the information I think you're looking for is contained in $_SERVER["SCRIPT_FILENAME"] and $_SERVER["PATH_TRANSLATED"]. YMMV

Ken

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.