I have my code that I am trying to see, its suppose to ask me for login info then when I click submit it should POST to a php script but when I run this script I see nothing, white blank screen and no errors…any ideas? this file is named login.php html body is not showing…
<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>
Try getting rid of the < p > at line 12. If that doesn’t work, try commenting out the tabtop() call. If this gives you the form, then debug that script. It looks as though that script has a logic error, not a syntax one, so no syntax error.