Blogger Information
Blog 16
fans 0
comment 0
visits 12271
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php模板知识-11月16号作业
wenbin0209
Original
565 people have browsed it

php $_POST传值:

实例

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>post传值练习</title>
</head>

<body>
    <!-- phppost传值 -->
    <form action="/1115/php/login.php" method="POST">
        <div>
            <label for="name">用户名:</label>
            <input type="text" name="name" id="name">
        </div>
        <div>
            <label for="pas">密码:</label>
            <input type="text" name="password" id="pas">
        </div>
        <input type="submit" value="登录">
    </form>
</body>

</html>
echo  '账号:'. $_POST['name'];
echo '<hr>';
echo  '密码:'. $_POST['password'];

运行实例 »

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

image.png


手写:

image.png




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!