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 users enter the requested information and submit:
   act=Submit&email=userid@cs.und.edu&password=CSci457
In PHP, the predefined $_POST variable is used to collect input values such as

   echo "$_POST[act]";                     // Print “Submit.”
   echo "$_POST[email]";                 // Print “userid@cs.und.edu.”
   echo "$_POST[password]";           // Print “CSci457.”




      “Somebody actually complimented me on my driving today.    
      They left a little note, it said ‘Parking Fine.’”    
      — Tim Vine