嗨,我是一個初學者,我試圖創建一個管理員登錄頁面使用HTML和PHP(PHP也在這裏爲其他幾個目的)一旦管理員登錄,一個HTML文件需要運行,我會在下面包含我的登錄頁面代碼,我需要在php文件中的if語句中插入命令我嘗試了不同的使用include函數的方式,也許我沒有正確使用它 預先感謝您! !如何從PHP調用一個html文件
代碼: PHP文件:
?php
$username = $_POST['username'];
$password = $_POST['password'];
if ($username =='admin' and $password =='Parthurnax')
{
include 'test.html';
}
else
{
echo 'you are not the admin';
}
?>
HTML文件:如果你想重定向到新的頁面
if(whatever_condition_set_true) {
header('Location: whatever_page.html');
exit;
}
或 如果您想在下面
<html>
<body>
<div align="center">
<form action="page.php" method="POST">
<b>Username:</b><input type="text" name="username"><br>
<b>Password:</b><input type="password" name="password"><br>
<input type="submit">
</form>
</div>
</body>
</html>
用戶'標題( 「位置:test.html的」);退出():' –
PHP標記裏面的PHP標記是完全錯誤的 –
這只是我嘗試過的很多命令中的一個,反正謝謝讓我知道標記不應該嵌套 – Niron