Home>Article>Backend Development> How to get form submitted data in PHP
How PHP gets the data submitted by the form
##1. Super global array variable: $_GET[]
Description: Get the data submitted by form method = “get” Example: $username = $_GET[“username”];2. Super global array variable: $_POST[](Recommended learning:PHP programming from entry to proficiency)
Description: Get form method = "post" Submit Data Example: $username = $_POST[“username”];New Document
The above is the detailed content of How to get form submitted data in PHP. For more information, please follow other related articles on the PHP Chinese website!