I know it is php global variable but I'm not sure, what it do? I also read from official php site, but did not understand.
|
|
You may want to read up on the basics of PHP. Try reading some starter tutorials. $_POST is a variable used to grab data sent through a web form. Here's a simple page describing $_POST and how to use it from W3Schools: PHP $_POST Function Basically: Use HTML like this on your first page:
Then on submit.php use something like this:
|
|||||||
|
|
There are generally 2 ways of sending an HTTP request to a server:
Say you have a <form> on a page. <form method="post"> <input type="text" name="yourName" /> <input type="submit" /> </form> Notice the "method" attribute of the form is set to "post". So in the PHP script that receives this HTTP request, $_POST[ 'yourName' ] will have the value when this form is submitted. If you had used the GET method in your form: <form method="get"> <input type="text" name="yourName" /> <input type="submit" /> </form> Then $_GET['yourName'] will have the value sent in by the form. $_REQUEST['yourName'] contains all the variables that were posted, whether they were sent by GET or POST. |
|||
|
|
|
It's used to store CGI input via a POST sent to your page. Example: Your page contains: <form action="welcome.php" method="post"> Name: <input type="text" name="fname" /> Age: <input type="text" name="age" /> <input type="submit" /> </form> One the user submits the values input into the form, you can access those variables through $_POST using the names you provided for the input tags. Welcome <?php echo $_POST["fname"]; ?>!<br /> You are <?php echo $_POST["age"]; ?> years old. |
|||
|
|
|
$_POST is used to retreive values passed to your page via a POST request. For example, your page uses a form to pass data to another page in your application. Your form would have
to pass those values via POST. It is matched by $_GET which perform the same funtion for GET requests. If you want to be able to reference either GET/POST values, you can use $_REQUEST |
|||
|
|
|
You can capture post values from forms: Example:
To get this you'll use:
|
|||
|
|
|
It contains data sent by HTTP post, this is most often from a HTML FORM.
Will be accessible by
|
|||
|
|
|
It contains the data submitted via the POST method, and only the POST method, versus data submitted via the GET method. The $_REQUEST superglobal variable contains both $_POST and $_GET data. |
|||||
|
|
When data is posted through a form to the server, you access it through the $_POST array:
--
Not all data is sent through $_POST through. File uploads are done through $_FILES. |
|||
|
|
|
As defined by the Hypertext Transfer Protocol specifications, there are several types of requests that a client (web browser) can make to a resource (web server). The two most common types of web requests are GET and POST. PHP automatically loads any client request data into the global arrays, If you click a link that goes to "http://example.com/index.php?x=123&y=789", then index.php will have it's If you submit a form that has the following structure:
Then the receiving script, index.php, will have it's |
|||
|
|
|
There are two ways of sending data from a form to a web app, GET and POST. GET sends the data as part of the URL string: POST sends them separately from the URL. You avoid the short length limit, plus you can send binary or encrypted data with POST. In the first example above, PHP can retrieve the values sent by $_GET['fred'] and $_GET['sam']. You would use $_POST instead if the form was POSTed. If you're wondering which method you should use, start here |
|||
|
|
|
It contains any values posted from a HTML form to this script. |
|||||||
|