Home  >  Article  >  Backend Development  >  How to get the data submitted by PHP get method

How to get the data submitted by PHP get method

青灯夜游
青灯夜游Original
2021-07-07 14:33:284081browse

In PHP, you can use the "$_GET" global variable to obtain the form data submitted using the GET method in the form form. The data structure of the "$_GET" global variable is an associative array. The key of the array is the value of the form element name, and the value of the array is the value of the corresponding form.

How to get the data submitted by PHP get method

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

$_GET global variable is used to receive the form form For form data submitted using the GET method, the GET method is the default method for the method attribute in the form form. Form data submitted using the GET method is appended to the URL and sent to the server as part of the URL.

During the development process of the program, since the data submitted by the GET method is attached to the URL and sent, information of the type "Parameters passed by the URL user" will be displayed in the address bar of the URL, as follows: Representation:

http://url?name1=value1&name2=value2 ...

Among them, url is the form response address (such as https://www.php.cn), name1 and name2 are the names of the form elements, and value1 and value2 are the values ​​of the form elements. The URL and form elements are separated by "?", and multiple form elements are separated by "&". The format of each form element is "name=value", fixed.

Since different browsers have different restrictions on the length of the URL, when using the GET method to submit data, you must pay attention to the size of the data. If the length of the data exceeds the browser limit, the data will be truncated, resulting in data loss. The URL length restrictions of mainstream browsers are as shown in the following table:

Browser Maximum length (number of characters)
Internet Explorer 2083
Firefox 65536
chrome 8182
Safari 80000
Opera 190000

$_GET The data structure of the global variable is an associative array. The key of the array is the value of the form element name, and the value of the array is the value of the corresponding form. $_GET can not only obtain form data, but also all parameters in the URL can be obtained using $_GET.

Another thing to note is: when using $_POST or $_GET to obtain form data in PHP, it is case-sensitive, so you should be careful not to ignore the case of letters during the development process.

[Example] Use the $_GET global variable to obtain the data transmitted in the form.

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
</head>
<body>
    <form action="index.php" method="get">
        姓名:<input type="text" name="name" placeholder="请输入姓名"><br>
        性别:<input type="radio" name="sex" value="男">男
              <input type="radio" name="sex" value="女">女<br>
        爱好:<input type="checkbox" name="hobby[]" value="read">阅读
              <input type="checkbox" name="hobby[]" value="travel">旅游
              <input type="checkbox" name="hobby[]" value="sport">运动
              <input type="checkbox" name="hobby[]" value="internet">上网<br>
        职业:<select name="job">
                    <option value="coder">程序员</option>
                    <option value="teacher">教师</option>
                    <option value="doctor">医生</option>
                    <option value="other">其它</option>
              </select><br>
        <input type="submit" value="提交">  <input type="reset" value="重置">
    </form>
</body>
</html>
<?php
    if(!empty($_GET)){
        echo '提交成功!<br><pre class="brush:php;toolbar:false">';
        var_dump($_GET);
    }
?>

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to get the data submitted by PHP get method. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn