PHP私人会议

时间:2016-09-03 14:08:10

标签: php mysql

我有一个登录页面,一旦登录就会将您重定向到论坛,但我尝试制作它,这样您无法通过我所登录页面登录而无法登录论坛然后重定向到论坛/目录 我有一个名为lock.php的php文件,里面是

<?php
include('../config.php');
session_start();
$user_check=$_SESSION['login_user'];

$ses_sql=mysql_query("select username from admin where username='$user_check' ");

$row=mysql_fetch_array($ses_sql);

$login_session=$row['username'];

if(!isset($login_session))
{
header("Location: ../login.php");
}
?>

所以在论坛index.php中我把

include('lock.php');

但出于某种原因,它仍然无法确定原因

我有这个小索引可行,但它不适用于论坛索引

<?php

include('lock.php');

?>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="description" content="Secret"/>
<meta name="keywords" content="DarkKnight"/>
<link href="style.css" rel="stylesheet" type="text/css">
<title>test </title>
</head>

<body>
<h1>test <?php echo $login_session; ?></h1> 

<h2><a href="logout.php">Sign Out</a></h2>
    </body>
</html>

1 个答案:

答案 0 :(得分:0)

$_SESSION['login_user']

你应该总是叫出口;紧接header('location:..')电话后,为了确保当前文件停止运行,这是最佳做法。 - ArtisticPhoenix S