通过session来储存
创新互联公司成立于2013年,先为泰安等服务建站,泰安等地企业,进行企业商务咨询服务。为泰安企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
?phpsession_start();
$_SESSION['username'] = "userName";?
在其它页面直接取出就行了
?
session_start();
echo $_SESSION['username'];
?
通过url传向其它页面传递参数
other.php?user=xxx
或在php重定向到其它页面时
$username = "xxx";
$home_url = 'logIn.php?user='.$username; header('Location:'.$home_url);
其它页面用$_GET["user"]来接收
3.通过表单向其它页面传送参数
其它页面用$_POST["user"]来接收
这个需要使用php中的$_REQUEST["code"]全局变量的方式,据可以获取到HTML传输过来的数据了。
html
head
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
title无标题文档/title
/head
body
form action="" method="get"
Name: input type="text" name="name" /
input type="submit" /
/form
?php
$name=$_GET['name'];
echo "欢迎你:".$name;
?
/body
/html