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> Link to comment https://forums.phpfreaks.com/topic/174271-solved-form-sumbit-button-doesnt-work-in-ie/ 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. Link to comment https://forums.phpfreaks.com/topic/174271-solved-form-sumbit-button-doesnt-work-in-ie/#findComment-918658 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. Link to comment https://forums.phpfreaks.com/topic/174271-solved-form-sumbit-button-doesnt-work-in-ie/#findComment-918667 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.