PHP implementation gets form data with HTML embedded PHP script

Source: Internet
Author: User
This article mainly introduces the PHP implementation to get form data and HTML embedded PHP script, interested in a friend's reference, I hope to help you.

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")

<!doctype html>

The above is the whole content of this article, I hope that everyone's study has helped.


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.