Bobafart
01-20-2008, 12:50 AM
I have a simple submission form that works in FF but no MIE 7.
<?
if(isset($_POST['submitLogin'])) {
// do blah blah blah
}else{
?>
display the form:
<form action="" method="post">
username and password fields are here
<input type="image" src="http://www.foo.com/img/icons/icon_login.gif" name="submitLogin" id="button" value="Login">
</form>
<? } ?>
the submit button image displays fine.
MIE keeps returning to the else and doesn't like my condition.. works fine in FF
what am I doing wrong?
<?
if(isset($_POST['submitLogin'])) {
// do blah blah blah
}else{
?>
display the form:
<form action="" method="post">
username and password fields are here
<input type="image" src="http://www.foo.com/img/icons/icon_login.gif" name="submitLogin" id="button" value="Login">
</form>
<? } ?>
the submit button image displays fine.
MIE keeps returning to the else and doesn't like my condition.. works fine in FF
what am I doing wrong?