我檢查了一切。它仍然沒有工作,當我把分號(;)在第6行它說
Parse error: syntax error, unexpected ';' in line 6
我該怎麼辦?這裏是我的代碼:
<?php
if(isset($_POST['logintoadminpanel']))
(
include_once 'connection.php';
$username = $_POST['username'];
$password = $_POST['password'];
if(empty($username) || empty($password))
(
echo "Please fill the required fields";
)
)
?>
這是一個語法錯誤。檢查你的文件可能你缺少分號(;) –