环顾四周的其他职位,但仍在挣扎。目前有一个客户关系管理系统正在运行。用户从/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'u_uid'))标题(“Location:登录时将被重定向到哪里->view.php])
我不知道这句话该怎么说。如果有任何其他语法需要添加。
非常感谢!
发布于 2018-02-07 03:34:13
如果我正确理解,这段代码将帮助你。
if (isset($_SESSION['u_uid']))
echo ('<script type="text/javascript">window.location.replace("http://yoursite.com/yourpath.php");</script>');https://stackoverflow.com/questions/48654231
复制相似问题