通過session來儲存
創(chuàng)新互聯(lián)公司成立于2013年,先為泰安等服務建站,泰安等地企業(yè),進行企業(yè)商務咨詢服務。為泰安企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。
?phpsession_start();
$_SESSION['username'] = "userName";?
在其它頁面直接取出就行了
?
session_start();
echo $_SESSION['username'];
?
通過url傳向其它頁面?zhèn)鬟f參數(shù)
other.php?user=xxx
或在php重定向到其它頁面時
$username = "xxx";
$home_url = 'logIn.php?user='.$username; header('Location:'.$home_url);
其它頁面用$_GET["user"]來接收
3.通過表單向其它頁面?zhèn)魉蛥?shù)
其它頁面用$_POST["user"]來接收
這個需要使用php中的$_REQUEST["code"]全局變量的方式,據(jù)可以獲取到HTML傳輸過來的數(shù)據(jù)了。
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