Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

i dont know how to Make the form information get to me any one know how i can do this if u do please email me at Lobo723@aol.com

Replies are listed 'Best First'.
RE: Forms Problem
by setantae (Scribe) on Jan 28, 2000 at 06:38 UTC
Re: Forms Problem
by X_Bones (Novice) on Jan 28, 2000 at 13:06 UTC
    If you're talking about CGI forms and Web pages, then you have to use something like this: if ($ENV{'REQUEST_METHOD'} EQ 'GET') { @pairs = split (/&/, $ENV{'QUERY_STRING'}); } elsif ($ENV{'REQUEST_METHOD'} EQ 'POST') { read (STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); @pairs = split(/&/, $buffer); } else { exit; } Just don't try using it on your AOL Web space; I don't think they let you use CGI.