2

所以我正在制作一个简单的 PHP 项目,我对 PHP 没有太多经验。

也许你们可以帮助我。

我有一个存储用户凭据的数据库,看起来像这样。

id|Username|Password|          Mail       |Acces|
1 |Josh    | *****  |Something@hotmail.com|  1  |
2 |Rick    | **0**  |Generalpo@hotmail.com|  2  |

在我的 php 页面上,我想这样做,所以如果数据库中的访问级别高于 1,它会进行重定向。我正在使用 echo 的正确知道来做这件事,所以我不会一直被重定向。但是每次我这样做时,我都会得到我没有足够的权利。当我使用用户名 Josh 登录时。

$sql = "SELECT * From login Where Username= "'$_SESSION('username')'"";
while($row = mysql_fetch_row($sql));
if ($row['Acces'] == "1"){
Echo("You have enough rights");
}else{
Echo("You dont have enough rights");
};

任何帮助表示赞赏

4

3 回答 3

1

你部分正确,但我会做一些改变:

$sql = mysql_query("SELECT * FROM login WHERE Username= '".mysql_real_escape_string($_SESSION['username'])."'");
$sql_fetched = mysql_fetch_assoc($sql);

if ($sql_fetched['Acces'] > 1)
{
    echo "You have enough rights and will be redirected automatically.";
    header('refresh:3;url=redirect.php');
}
else
{
    echo "You dont have enough rights.";
    header('refresh:3;url=login.php');
}
于 2013-05-07T07:27:41.023 回答
0
$sql = "SELECT * From login Where Username= "'$_SESSION('username')'"";
while($row = mysql_fetch_row($sql));
if ($row['Acces'] == "1"){
header('Location: http://www.example.com/'); /* Redirect browser */
}else{
echo('You dont have enough rights');
};

将http://www.example.com/更改为您想要的。

于 2013-05-07T07:24:26.337 回答
0
$sql = "SELECT * FROM `login` Where `Username`='{$_SESSION['username']}'";

while($row = mysql_fetch_row($sql)) {
    if ($row['Acces'] == "1") {
        // Change these two headers to the file you want to redirect too
        header("Location: http://www.yoursite.com/enoughrights.php");
    } else {
        header("Location: http://www.yoursite.com/notenough.php");
    }
}
于 2013-05-07T07:27:58.147 回答