我有一個登錄頁面,用戶在成功登錄到他們的帳戶後被重定向到profile.php頁面。但是,如果我們希望將它們重定向到index.html頁面,只需單擊登錄按鈕而不輸入值或輸入了錯誤的值。我嘗試使用header("location: index.html");
,但它沒有奏效。 任何人都可以告訴我怎麼做。從一個頁面重定向到另一個php
登錄表單頁面是:
<form role="form" action="login.php" method="post">
<div class="form-group">
<label for="exampleInputEmail1">Email</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email" name="email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password" name="password">
</div>
<input name="submit" type="submit" value=" Login ">
</form>
的login.php頁面
<?php
session_start(); // Starting Session
$error=''; // Variable To Store Error Message
if (isset($_POST['submit'])) {
if (empty($_POST['email']) || empty($_POST['password'])) {
$error = "email or Password is invalid";
}
else
{
// Define $email and $password
$email=$_POST['email'];
$password=$_POST['password'];
// To protect MySQL injection for Security purpose
$email = stripslashes($email);
$password = stripslashes($password);
$email = mysql_real_escape_string($email);
$password = mysql_real_escape_string($password);
//Establishing Connection with Server by passing server_name, user_id and password as a parameter
$connection = mysql_connect("abc.com", "abc", "abc");
// Selecting Database
$db = mysql_select_db("abc", $connection);
// SQL query to fetch information of registerd users and finds user match.
$query = mysql_query("select * from users where password='$password' AND email='$email'", $connection);
$rows = mysql_num_rows($query);
if ($rows == 1) {
$_SESSION['login_user']=$email; // Initializing Session
header("location: profile.php"); // Redirecting To Other Page
} else {
$error = "email or Password is invalid";
header("location: index.html");
}
mysql_close($connection); // Closing Connection
}
}
?>
謝謝你完美工作 – 2014-09-02 05:00:23