首先,为了解决这个问题,这里是我的网站结构:
index.html
|_controll.php
|_success.html
|_chat.php
在 index.html 上,我得到了一个登录表单。在 controll.php 我开始像这样 $_SESION :
<?php
session_register("myusername");
session_register("mypassword");
header("Location:sucsess.html");
$myusername=$_SESSION['myusername'];
?>
请注意,$myusername 之前已注册为变量。
在success.html页面上有一个按钮打开chat.php,我想在其中使用$_SESSION
<?php
echo "<input type='hidden' id='nameInput' value='"?><?php echo $_SESSION['myusername']; ?><?php echo"'>
<input..."
?>
提交此表单时的结果是“?>