REQUEST_METHOD: POST


There are two ways to send the web input to the server-side scripts: For an example of the POST method, consider the following form:
       

   Email:      Password: 
The input type names are The standard input may contain the following string after submission:
   act=Submit&email=userid@cs.und.edu&password=CSci513
In Perl, the $query->param variable collects input values such as

   print $query->param('act');           // “Submit”
   print $query->param('email');       // “userid@cs.und.edu”
   print $query->param('password');     // “CSci513”




      “If you’re reading this...    
      Congratulations, you're alive.    
      If that’s not something to smile about,    
      then I don’t know what is.”    
      ― Chad Sugg, Monsters Under Your Head