本文目录一览:
PHP中如何通过超链接传递参数
通过表单直接传递即可,案例代码如下:
创建go.php文件,其代码如下
?php
@$username = $_POST['name'];
@$usermessage = $_POST['message'];
if(!empty($username) || !empty($usermessage)){
echo "您的姓名:".$username.",您的留言内容:".$usermessage;
}else{
echo 'form action="go.php" method="post"
您的姓名:input type="text" name="name"brbr
留言内容:input type="text" name="message"
button提交/button
/form';
}
?
案例截图:
1.填写表单
2.获得内容
在PHP中超链接怎样传值多个值
传递单个参数
a href="a.php?user=zhangsan"单个参数超链接/a
传递多个参数
a href="a.php?user=zhangsanage=20classid=1"多个参数超链接/a
传递多个值用拼接, 如上
php 超链接里的参数如何传递数组
需要准备的材料分别是:电脑、php编辑器、浏览器。
1、首先,打开php编辑器,新建php文件,例如:index.php。
2、在index.php中,输入代码:var_dump($_GET['name']);。
3、浏览器访问index.php?name[]=1name[]=2,此时会打印出数组传递结果。