bmdsherman Posted September 15, 2009 Share Posted September 15, 2009 I can't get this form button to work in IE. <form method="post" action="checkuser.php" name="form"> <table border="0" cellpadding="1" cellspacing="4" align="center"> <tr> <td>Email Address:</td> <td><input name="email_address" type="text" value="<?php echo"$email";?>" id="email_address"></td> </tr> <tr> <td>Password:</td> <td><input name="password" type="password" value="<?php echo"$password";?>" id="password"></td> </tr> <tr> <td>Remember Me:</td> <td><input name="cookie" type="checkbox" checked="checked"></form></td> </tr> <tr> <td> </td> <td><input type="submit" name="Submit" value="Login"></td> </tr> </table> </form> Quote Link to comment Share on other sites More sharing options...
PFMaBiSmAd Posted September 15, 2009 Share Posted September 15, 2009 Your have two </form> tags, making the HTML invalid. Remove the 1st one. Quote Link to comment Share on other sites More sharing options...
bmdsherman Posted September 15, 2009 Author Share Posted September 15, 2009 Thanks, I guess I just needed to take a break from coding and go back to that with fresh eyes. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.