1 回答

TA貢獻(xiàn)2065條經(jīng)驗(yàn) 獲得超14個(gè)贊
您的查詢(xún)只生成與用戶(hù)名、密碼和類(lèi)型實(shí)際匹配的行。因此,只有在憑據(jù)正確的情況下才會(huì)運(yùn)行 while 循環(huán)。您需要將重定向放在 index.php 之后。
while($rand=$rezultat->fetch_assoc())
{
if($rand['username'] == $username && $rand['password'] == $password && $rand['type'] == 'Admin') //verificare array
{
header("Location: index.php");header("Location: admin.php"); //muta in pagina admin.php
exit;
}else if ($rand['username'] == $username && $rand['password'] == $password && $rand['type'] == 'User'){
header("Location: user.php");
exit;
}
}
header("Location: index.php");
- 1 回答
- 0 關(guān)注
- 136 瀏覽
添加回答
舉報(bào)