登录失败后的会话和login.php中的会话检查它,而不是将其重定向到主页(index.php)

时间:2015-11-24 06:25:23

标签: php

登录失败后的会话,login.php未将其重定向到主页(index.php)。 示例链接(pos.beckie168.com)。

请帮帮我

username : tepbopea
password : 8886188

代码Login.php:

<?php
    session_start();
    require 'dbconfig/db.php';
    $a='Username';
    $b='password';
    if(isset($_POST['btnsend'])){
        $name=$_POST['txtusername'];
        $pwd= $_POST['txtpwd'];
        if(trim($name)==''){
            $a="Name required";
            }elseif(trim($pwd)==''){
                $b="Password required";
                }else{
                    $sql="select * from tbluser where username='$name' and password='$pwd'";
                    $query=mysqli_query($con,$sql);
                    $num= mysqli_num_rows($query);
                    if($num>0){
                        $_SESSION['userlogin']=$name;
                        header('location:index.php');
                        }else{

                            echo"<span style='color:red;margin-left:40%;margin-top:20px;font-family:Segoe,sans-serif;'>
                            Wrong Username or  Password</span>";
                            }
                    }
        }

1 个答案:

答案 0 :(得分:0)

尝试 -

"<script>
        window.location = "index.php";
 </script>"

只需替换

 header('location:index.php');