Dhira Posted March 27, 2006 Share Posted March 27, 2006 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? Quote Link to comment https://forums.phpfreaks.com/topic/5916-need-code-string-for-path/ Share on other sites More sharing options...
wildteen88 Posted March 27, 2006 Share Posted March 27, 2006 Try $_SERVER['DOCUMENT_ROOT']; Quote Link to comment https://forums.phpfreaks.com/topic/5916-need-code-string-for-path/#findComment-21128 Share on other sites More sharing options...
Dhira Posted March 27, 2006 Author Share Posted March 27, 2006 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? Quote Link to comment https://forums.phpfreaks.com/topic/5916-need-code-string-for-path/#findComment-21146 Share on other sites More sharing options...
kenrbnsn Posted March 27, 2006 Share Posted March 27, 2006 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"]. YMMVKen Quote Link to comment https://forums.phpfreaks.com/topic/5916-need-code-string-for-path/#findComment-21217 Share on other sites More sharing options...
Dhira Posted March 28, 2006 Author Share Posted March 28, 2006 Thanks. Those didn't work the way I wanted, but it helped me figure out what I needed.I added a variable called:$PathFolder = $_SERVER["DOCUMENT_ROOT"];and I entered $PathFolder in the line where I wanted it to appear, and that worked. Quote Link to comment https://forums.phpfreaks.com/topic/5916-need-code-string-for-path/#findComment-21389 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.