Blogger Information
Blog 33
fans 0
comment 0
visits 19507
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
get传值简单练习--PHP培训九期线上班
取个名字真难
Original
811 people have browsed it

html代码

实例

<!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>get传值</title>
</head>
<body>
<a href="text2.php?m=100&n=哦哈哈&w=ahaha&id='10'&name='xiaoqiang'">哦哈哈哈,点我啊</a>

<form action="text2.php" method="get">
    <label for="name">输入用户名:</label>
    <input type="text" name="name"><br>
    <label for="password">输入密码:</label>
    <input type="password" name="pass" ><br>
<button>提交</button>
</form>

</body>
</html>

运行实例 »

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

text2.php

实例

<?php
echo $_GET["m"];
echo $_GET["n"];
echo $_GET["w"];
echo $_GET["pass"];
echo $_GET["name"];

运行实例 »

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


Correcting teacher:查无此人查无此人

Correction status:qualified

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!