|
Posted by ll on 10/08/07 21:06
On Oct 8, 3:39 pm, ll <barn104_1...@yahoo.com> wrote:
> On Oct 8, 12:14 pm, "Jonathan N. Little" <lws4...@centralva.net>
> wrote:
>
>
>
> > 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 STUDIOhttp://www.LittleWorksStudio.com
>
> Thanks Jonathan,
> The page prints the file directory - is there a way to get the
> complete directory?
>
> Thanks
> Louis
Thanks - I put this script that prints several keys. Is there
actually a way to discern what drive the directory is on (on the web
server)?
Louis
-------------
#!/usr/bin/perl
print "Content-type:text/html\n\n";
print <<EndOfHTML;
<html><head><title>Print Environment</title></head>
<body>
EndOfHTML
foreach $key (sort(keys %ENV)) {
print "$key = $ENV{$key}<br>\n";
}
print "</body></html>";
[Back to original message]
|