0

我有一个用 PHP 编写的考勤管理系统应用程序。该软件包在我的本地计算机上运行良好,但是当我尝试在生产服务器上托管它时,主页正在加载,但我无法使用任何用户帐户/数据登录。

<?php 

session_start();
include_once("include\config.php");
if (isset($_POST['textfield1'])&&isset($_POST['textfield2'])){
$login = $_POST["textfield1"];
$pwd = $_POST["textfield2"];
$recordset = mysql_query("select * from users");

while($record = mysql_fetch_array($recordset)){
    if($login == $record["ulogin"] && $pwd == $record["upassword"]) 
    {

    $_SESSION["ulogin"] = $record["ulogin"];
    $_SESSION["uid"] = $record["uid"];  
            if($record["utype"] == 1){
            $_SESSION["utype"] = $record["utype"];
            header("Location:admin.php?uid=".$record["uid"]);
            exit;
            }else{
        header("Location:home.php");
        exit;
        }
   }
} 
}
header("Location:login.php?invalid=1");  
?>

这是我的用户密码验证码基础连接。一切正常。请帮帮我。

4

1 回答 1

0

Confirm DB is on server. Confirm your config. One quick MYSQL tip(if you are using it): if information_schema table shows, then you DB is not properly configured.

于 2013-01-22T10:24:46.277 回答