我想使用 php 会话将用户名传递到第二页,但它显示错误。
注意:未定义索引:第 5 行 D:\software 2\wamp\wamp\www\session\s2.php 中的 nam
我的第一页(s1.php)是这样的
<html>
<head>
<?php
session_start();
?>
</head>
<body>
<p>hello</p>
<form method="get" action=" http://localhost/session/s2.php">
<input type="text" name="nam"><br>
<input type="submit" value="Submit"><br>
</form>
</body>
</html>
我的第二页(s2.php)如下
<html>
<head>
<?php
session_start();
echo $_SESSION['nam'];
?>
</head>
here is the second page
<body>
</body>
</html>
谢谢