The $_Post Variable

The $_POST Variable
The variable is an array of variable names and values that is sent by the HTTP POST method. The $_POST variable is used to collect values from a form with the method=”post”. The information sent from a form through this method is invisible to others and has no limits with concerns to the amount of information to be sent.

Name :
Age :

This time, as the user clicks on the submit button, the address bar would not display any information looking like:

http://www.samplepage.com/welcome.php

Comments are closed.