0
我有我的代碼,我想看看,它假設要求我的登錄信息,然後當我點擊提交它應該發佈到PHP腳本,但是當我運行這個腳本,我什麼都看不到,白色的空白屏幕,沒有錯誤。 ..有任何想法嗎?該文件被命名爲login.php中的HTML身體沒有顯示...爲什麼我沒有看到我的html或任何類型的錯誤?
<html>
<head>
<title>Authentication</title>
</head>
<body>
<form action='loginLDAP.php' method='post' name='Auth'>
<?php TabTop("Please Login"); ?>
Please log in using your user name and your
portal password:<p>
<table cellspacing=3 cellpadding=3 class=ContentBodyTable>
<tr>
<td>Username: </td>
<td><input type=text name=login size=16 maxlength=15 class=textInput></td>
</tr>
<tr>
<td>Password: </td>
<td><input type=password name=password size=16 maxlength=15 class=textInput></td>
</tr>
<tr>
<td colspan=2><input type=submit value=Authenticate class=SubmitInput style='width:100'></td>
</tr>
</table>
</form>
<?php TabBot(); ?>
<!-- Set the focus to the login text field onload. -->
<script language="JavaScript" type="text/javascript">
document.Auth.login.focus();
</script>
</body>
</html>
看看你的PHPerror日誌。 –
我剛剛做了,我什麼也沒有得到error_reporting(-1); ... Html正文沒有顯示... – Bulvak
請確保'loginLDAP.php'存在於同一個文件夾中。如果您的文件託管在Linux服務器上(很可能),請確保您的文件名拼寫正確:文件名區分大小寫。 –