我想将变量用户名显示在另一个页面中。 这些是我使用过的代码。 这是插入用户名的第一页。
<?php
include('login.php'); // Includes Login Script
if(isset($_SESSION['login_user'])){
}
?>
<html>
<head>
<title>Login</title>
</head>
<body>
<div id="login" align="center">
<h2>Welcome!</h2>
<form action="" method="post">
<label>Username :</label>
<input id="name" name="username" placeholder="username" type="text"><br>
<label>Password :</label>
<input id="password" name="password" placeholder="**********" type="password"><br><br>
<input name="submit" type="submit" value=" Login ">
<span><?php echo $error; ?></span>
</form>
</div>
</body>
</html>
然后在此页面中,我想显示插入的用户名
<?php include 'database.php'; ?>
<?php session_start(); ?>
<?php
function visualizza($file) {
$f = fopen($file, "r"); // apro il file in lettura
return fread($f, filesize($file));
fclose($f);
}
?>
<html>
<main>
<div class="container">
<h2> Quiz Completato!</h2>
<p> Congratulations <?php
$username = $_POST['username'];
echo $username;
?>
! You completed the test</p>
<p>Final Score:<?php echo $_SESSION['score']; ?> </p>
</div>
</main>
但它告诉我注意:未定义的索引:第29行的C:\ xampp \ htdocs \ quizzer \ final.php中的用户名 我该怎么解决呢?
答案 0 :(得分:1)
应该可以改变
<form action="" method="post">
到
<form action="final.php" method="post">
答案 1 :(得分:-1)
必须先调用session_start()函数,然后才能向浏览器输出任何内容,并且需要在需要访问会话数据的每个页面上调用此函数。