从登录页面重定向登录用户

时间:2018-02-07 00:40:12

标签: php redirect mysqli error-handling header

环顾其他职位但仍在苦苦挣扎。目前正在进行CRM系统。用户在/index.php中启动。

<?php
include_once'header.php';   
?>

<section class="main-container">
<div class="main-wrapper">
    <h2>Motoko</h2>

    <?php   

        if (isset($_GET["msg"]) && $_GET["msg"] == 'failed') {
        echo "Incorrect Username/Password";
        } 
        else { if (empty($uid) || empty($pwd))
        echo "You are not logged in";
            }                   
    ?>
</div>
</section>
<?php
include_once 'footer.php';
?>

其中/header.php包含:

<?php
session_start();
?>

<!DOCTYPE html>
<html>
<head>
<title>Motoko</title>
<link rel="stylesheet" type="text/css" href="style.css">

</head>
<body>
<header> 
<nav>
    <div class="main-wrapper">
        <ul>
            <li><a href="index.php">Home</a></li>   
        </ul>
        <div class="nav-login">
            <?php
                if (isset($_SESSION['u_id'])){
                echo '<form action="includes/logout.inc.php" method="POST">
                <button type="submit" name="submit">Logout</button>
                </form>';
                } else {
                echo '<form action="includes/login.inc.php" method="POST"> 
                <input type="text" name="uid" placeholder="Username/e-mail">
                <input type="password" name="pwd" placeholder="password">
                <button type="submit" name="submit">Login</button> 
                </form>';

                echo '<form action="signup.php" method="POST"> 
                <button type="submit">Sign up</button> 
                </form>';

                echo '<form action="reset.php" method="POST"> 
                <button type="submit">Forgot your Password?</button> 
                </form>';

                }
            ?>
        </div>
    </div>
</nav>
</header>

我需要添加if(isset($ _ SESSION [&#39; u_uid&#39;]))标题(&#34;位置:登录时重定向的位置 - &gt; view .PHP)

我不确定该声明应该去哪里。如果还有其他需要添加的语法。

非常感谢!

1 个答案:

答案 0 :(得分:1)

如果我理解正确,此代码将对您有所帮助。

if (isset($_SESSION['u_uid']))
    echo ('<script type="text/javascript">window.location.replace("http://yoursite.com/yourpath.php");</script>');
相关问题