in reply to Internal server error

OK I fixed that prob by adding "" Duh !

I am not at another problem, What I am trying to do is put a URL in an email...then get the $ENV{'QUERY_STRING'} and process that, but when i am entering

print "$ENV{'QUERY_STRING'}";

I am not getting anything. Can you not do this directly from a link or does this have to be done via a form ?

Replies are listed 'Best First'.
(ar0n) Re: Re: Perl Problem
by ar0n (Priest) on Mar 11, 2001 at 06:17 UTC
    Your form's action type could be set to POST (instead of GET), in which case yer data should be read from STDIN, not $ENV{QUERY_STRING}

    But please, make the world a better place; use CGI;

    [ar0n]