in reply to Re: Re: self_url() w/o CGI in MP2
in thread self_url() w/o CGI in MP2

No, but if you are doing a GET, this shoud do it.
my $self_url = "http://$ENV{SERVER_NAME}/$ENV{SCRIPT_NAME}?$ENV{QUERY_ +STRING}";
If you are doing a POST, then you'll have to read in STDIN to get your parameters.

- Tom