已解决:有一个愚蠢的错误导致了这个问题。在 header.php 中,我写了 $_SESSION["header"](它甚至不存在)而不是 $_SESSION["logged"]。感谢大家的帮助。
在我输入正确的登录信息后,Login.php 不想重定向。
该页面只是刷新并清除输入字段。
(也在 /tmp 文件夹中创建会话)
有没有人有任何想法?:S
提前致谢!:)
登录.php:
<?php
$message = NULL;
if (isset($_POST["enter"])) {
include 'cred.php';
$newUser = $_POST["user"];
$newPass = md5($_POST["pass"]);
if ($newUser==$user AND $newPass==$pass) {
session_start();
$_SESSION["logged"]=1;
$_SESSION["user"]=$newUser;
header('Location: index.php');
exit;
} else {
$message = 'failure';
}
}
?>
<head>
<style type="text/css">
body {
margin-top:120px;
}
</style>
</head>
<body>
<center>
<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" enctype="multipart/form-data">
Uporabnik:<br /> <input type="text" name="user" /><br /><br />
Geslo:<br /> <input type="password" name="pass" /><br /><br />
<input type="submit" value="submit" name="enter"/><br /><br />
<?php if($message!=NULL) {echo $message;} ?>
</form>
</center>
</body>
信用.php:
<?php
$user = 'janeznovak';
$pass= md5('greek123');
?>
编辑:添加了 header.php 文件,它是每个(index.php,second.php,third.php)页面的一部分。也许问题出在这里:
<?php
session_start();
if(!isset($_SESSION["header"])OR $_SESSION["header"]!=1){
header('Location: login.php');
exit;
} else {
$nuser = $_SESSION["user"];
}
?>
<head>
</head>
<body>
<div>
<a href="index.php">Prva</a> |
<a href="second.php">Druga</a> |
<a href="third.php">Tretja</a> |
<a href="logout.php">Logout</a> |
Prijavljeni ste kot <?php echo $nuser; ?>
</div>