Posted by Jonathan N. Little on 10/08/07 17:14
ll wrote:
> I'm trying to see if there is a way to determine the 'local path' on a
> server (as opposed to the url path) via application, etc?
>
> For example:
>
> $parent_url = "http://www.testsite.org/upload/";
> $parent_dir = "c:\\public_html\\upload\\";
Well it looks like possibly PHP?
then
$me = $_SERVER['SCRIPT_FILENAME'];
will have the path with the script file name that you can remove.
or it might be Perl:
my $me = $ENV{'SCRIPT_NAME'};
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|