我一直在关注如何在 php 和 mysql 中创建登录和注销页面的在线教程,这似乎很容易,直到我想修改脚本的阶段,我试图将管理员页面放在用户将有权访问一些链接..我在我的用户表中添加了一个名为 user_level 的列,我希望当用户登录时,他的 user_level 为 1,他将访问 season.php 脚本中的链接,但如果他的 user_level 为 2,他将被定向到另一个页面...我尝试在下面执行此操作,但它不起作用
if($user_level == 1){
header("Location: links.php");
}
else($user_level == 2){
header("Location: client.php");
}
这是我的 session.php 代码
<?php
if(!isset($_SESSION['name'])&&isset($_COOKIE['testsite'])){
$_SESSION['name'] = $_COOKIE['testsite'];
}
$dir = "profiles/".$_SESSION['name']."/images/";
$open = opendir($dir);
while(($file = readdir($open)) != FALSE){
if($file!="."&&$file!=".."&&$file!="Thumbs.db"){
echo "<img border='1' width='70' height='70' src='$dir/$file'>";
}
}
echo " <b>".$_SESSION['name']."</b>'s session<br /><a href='logout.php'>Logout</a>";
if($user_level == 1){
header("Location: links.php");
}
else($user_level == 2){
header("Location: client.php");
}
?>