Blogger Information
Blog 18
fans 0
comment 0
visits 13461
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
GET/POST 原理与实现 -4.15
太早的博客
Original
612 people have browsed it

1.png



实例

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <form action="" method="get">
        <label for="email">邮箱:</label>
        <input type="email" id="email" name="email" value="">
        <label for="password">密码:</label>
        <input type="password" id="password" name="password" value="">
        <button>登录</button>
    </form>
</body>
</html>
<?php
print_r($_GET);

运行实例 »

点击 "运行实例" 按钮查看在线实例


实例

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<form action="" method="post">
    <label for="email">邮箱:</label>
    <input type="email" id="email" name="email" value="">
    <label for="password">密码:</label>
    <input type="password" id="password" name="password" value="">
    <button>登录</button>
</form>
</body>
</html>
<?php
print_r($_POST);

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!