donglongqiao9595 2014-03-05 12:50
浏览 49
已采纳

PHP和mySql中的管理员登录页面出错

When i run this code everything seems to be fine... But when I login with the right username and password i get the following: That information is incorrect, try again Click Here I should be taken to the index.php file.

I also have echo the sql query and it gave me this Resource id #4

Can anyone spot the problem here.

Here is the PHP

$manager = preg_replace('#[^A-Za-z0-9]#i','',$_SESSION["username"]);
$password = preg_replace('#[^A-Za-z0-9]#i','',$_SESSION["password"]);

include"db_connection.php"; 

$sql = mysql_query("SELECT id FROM admin WHERE username='$manager' and password='$password' LIMIT 1");


$existCount = mysql_num_rows($sql);
if ($existCount ==1){
    while($row = mysql_fetch_array($sql)){
        $id=$row["id"];
    }

    $_SESSION["id"]=$id;
    $_SESSION["manager"]=$manager;
    $_SESSION["password"]=$password;
    header("location:index.php");
        exit();
    }else{
        echo'That information is incorrect, try again<a href="index.php"> Click Here</a>';
        exit();
    }
}

?>

Here is the HTML:

<html>
<head>
<title> Admin Login Page</title>

<head>
<body>
<div align="center" id="mainWrapper">

<div id="pageContent"><br/>
    <div align="left" style="margin-left:24px;">
        <h2> Please log in To manage the store</h2>
        <form id="form1" name="form1" method="post"   action="admin_login.php">
            User Name: <br/>
            <input name="username" type="text" id="username" size="40"/>
            <br/></br>
            Password: <br/>
            <input name="password" type="password" id="password" size="40">
                <br/>
                <br/>
                <br/>
                <br/>
                <br/>
            <label>
                <input type="submit" name="button" id="button" value="LogIn">
            </label>
        </form>
</body>
</html>
  • 写回答

2条回答 默认 最新

  • dpiz9879 2014-03-05 12:54
    关注

    Look at your first two lines. You're using $_SESSION whereas the form submitted data will be in $_POST.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 关于无人驾驶的航向角
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了