我正在尝试使登录页面正常工作,但我不断收到此错误:
解析错误:语法错误,意外的';'在第36行的C:\ xampp \ htdocs \ KAwebsite \ includes \ login.inc.php中
不知道为什么告诉我要删除分号。
} else {
while($row = mysqli_fetch_assoc($result) {
$_SESSION['username'] = $row['username']; //line 36
$_SESSION['password'] = $row['password'];
# code...
header("Location: ../KA.php");
exit();
任何帮助都会很棒!谢谢,
安迪
答案 0 :(得分:2)
while($row = mysqli_fetch_assoc($result)) { //missing )
$_SESSION['username'] = $row['username']; //line 36
$_SESSION['password'] = $row['password'];
}