In Internet Exlorer, the form handler script will get all the stuff inside the button tag instead of the 'value'.
< form action="script.cgi" method="post">
< button type="submit" value="create" name="action">
< table border=0 cellspacing=0 cellpadding=0>
< tr>
< td width=153 height=125 align=center>
New Account
< /td>
< /tr>
< /table>
< /button>
< /form>
2006-11-17
12:14:48
·
2 answers
·
asked by
malachi_1616
3
in
Computers & Internet
➔ Programming & Design
Instead of the form properly sending:
"action=create"
it sends this instead:
"action=<%20table%20border=0%20cellspacing=0%20cellpadding=0><%20tr>< %20td%20width=153%20height=125%20align=center>New%20Account<%20/td><%20/tr><%20/table>"
2006-11-17
13:44:08 ·
update #1
Also, just a quick mention, the code works perfectly in Mozilla...
2006-11-19
09:25:11 ·
update #2