我正在尝试登录页面。此文件(login.php)位于文件夹中,此文件应重定向的其他页面位于父文件夹中。 如果我直接打开文件login.php重定向工作。在网站上打开了重定向页面,但路径仍为http://mywebsite.com/login.php,我无法再从那里移动。
<?php
include("dbconnection");
$email = mysql_real_escape_string($_POST['email']);
$password = mysql_real_escape_string($_POST['password']);
$ris_news= mysql_query("SELECT * FROM user,contact_info WHERE contact_info.data = '$email' AND user.password = '$password'");
if (mysql_num_rows($ris_news) == 1) {
// Set username session variable
$_SESSION['email'] = $email;
// Jump to secured page
header('Location: ../logsucc.html');
}
else {
// Jump to login page
header('Location: ../logwr.html');
}
mysqli_close($db);
?>