Home > Article > Backend Development > How to Access POST Variables in PHP?
How to Access POST Variables
To access variables submitted via a POST request, you can leverage the built-in PHP variable called $_POST. This array automatically contains all of the POST data sent by the user.
Getting Individual Values
To retrieve a specific POST variable, you can use the following syntax:
<code class="php">$variable_name = $_POST["name_of_variable"];</code>
For example, if you have a checkbox with the name "myCheckbox," you can check its value like this:
<code class="php">if (isset($_POST["myCheckbox"]) && $_POST["myCheckbox"] == 'Yes') { }</code>
Accessing Checkboxes with Array Names
If you have multiple checkboxes with the same name, PHP will return an array of their values. To access these values, you can use the following syntax:
<code class="php">$checkbox_array = $_POST["array_name"];</code>
For example, if you have checkboxes with the name "myCheckbox[]", you can access their values like this:
<code class="php">foreach ($checkbox_array as $value) { }</code>
Getting the Entire POST Data
To view the entire contents of the $_POST array, you can use the var_dump() function:
<code class="php">var_dump($_POST);</code>
Handling Other Data Formats
If your POST data is in a format other than the standard form, such as JSON or XML, you can use the file_get_contents() function to retrieve the raw data:
<code class="php">$post_data = file_get_contents('php://input');</code>
The above is the detailed content of How to Access POST Variables in PHP?. For more information, please follow other related articles on the PHP Chinese website!