When PHP accepts information submitted through an HTML form, it saves the submitted data in a global array, and we can call the system-specific array of automatic global variables to get those values. The usual automatic global variables are as follows:
1.GET Mode
Function: Get data submitted by get mode
Format: $_get["FormElement"]
2.POST Mode
Function: Get the data submitted by post mode
Format: $_post["FormElement"]
3.REQUEST method
Function: Get data submitted in any way, $_request automatic global variable contains all get, POST, cookie and file data, such as not concerned about the source of data.
Format: $_request["FormElement"]
check box, list box (name in array form such as: "select[]", when the value is obtained directly using $_post["select")
Untitled Document
">
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
The above describes the PHP get form data and HTML embedded PHP script, including the aspects of the content, I hope to be interested in PHP tutorial friends helpful.