Blogger Information
Blog 16
fans 0
comment 0
visits 12379
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php基础-流程程控制,计数循环-11月15号作业
wenbin0209
Original
691 people have browsed it

get传值练习:

实例<!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>get传值练习</title>
</head>

<body>
    <form action="/1115/php/login.php" method="GET">
        <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>
php部分:
<?php

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


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

image.png


手写:

image.png

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