1

我使用 HTML 和 CSS 设计了一个表单,并使用 phpMyAdmin 作为后端,我可以在其中保存用户数据并将其用于登录目的。我已成功连接phpMyAdmin,成功保存数据并在登录页面验证。

现在我的问题是如果登录成功它必须加载 HTML 页面empaccess.html。我不知道如何在 PHP 中做到这一点。

这是我的 PHP 代码(empcheck.php):

<?php   
$a=$_POST['text3'];
$b=$_POST['text4'];

mysql_connect("localhost","root","","crm");
mysql_select_db("crm") or die("Error in Connection");
if (empty($_POST['text3']) && empty($_POST['text4']))
{
  echo "<h1><center>PLEASE ENTER YOUR USERNAME AND PASSWORD</center></h1>";
  exit();
}
$query="SELECT * from emmreg WHERE username='$a'";
$result=mysql_query($query);
if($result)
{
    $row=mysql_fetch_assoc($result) or die("");
    $uname=$row['username'];
    $pwd=$row['password'];
     if($a==$uname && $b==$pwd)
     {

       echo "Success";
        //header('location:index.html');
      }

else
 {
   echo "INCORRECT PASSWORD";

 }
}mysql_close();
?>
4

2 回答 2

2

PHP:

header('Location: http://example.com/page.php');        

Javascript:

<script type="text/javascript">
window.location = "http://www.example.com/";
</script>

HTML:

<meta http-equiv="Refresh" content="seconds; url=URL"> 

它会在加载时重定向到另一个页面。

于 2013-10-29T06:37:33.557 回答
1

使用, 并且不要在header 函数header()之前尝试回显或尝试获取任何输出

if($result)
{
    $row=mysql_fetch_assoc($result) or die("");
    $uname=$row['username'];
    $pwd=$row['password'];
    if($a==$uname && $b==$pwd)
     {
      header('location:empaccess.html');
     }
     else
     {
     header('location:index.html');;

     }
}
于 2013-10-29T06:36:13.653 回答