The following editor will bring you an article on the implementation of PHP obtaining form data and HTML embedding PHP scripts. The editor thinks it is quite good, so I will share it with you now and give it as a reference for everyone. Let’s follow the editor and take a look.
When PHP accepts information submitted through an HTML form, it will save the submitted data in a global array. We can call the system-specific automatic global variable array to obtain these values.
Commonly used automatic global variables are as follows:
1. GET method
Function: Get the data submitted by get method
Format: $_GET["formelement"]
2. POST method
Function: Get the data submitted by post method
Format: $_POST["formelement"]
##3. REQUEST method
Function: Get data submitted in any way. The $_REQUEST automatic global variable contains all GET, POST, COOKIE and FILE data, if you don’t care about the data source.
Format: $_REQUEST["formelement"]
Check box, list box (the name is in the form of an array For example: "select[]", just use $_POST["select"] when getting its value)1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|