为什么我没有看到我的HTML或任何类型的错误?

时间:2011-10-06 17:38:58

标签: javascript html

我有我想要查看的代码,它假设要求我输入登录信息然后当我点击提交它应该POST到PHP脚本但是当我运行这个脚本时我什么都没看到,白色空白屏幕没有错误...有任何想法吗?这个文件名为login.php,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>

1 个答案:

答案 0 :(得分:0)

尝试摆脱&lt; p>在第12行。如果这不起作用,请尝试注释掉tabtop()调用。如果这为您提供表单,则调试该脚本。看起来该脚本有逻辑错误,而不是语法错误,因此没有语法错误。