Jump to content

IE8 & Opera 10 Form Submit Problem

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
FAMFred

FAMFred

    Newbie

  • Members
  • Pip
  • 1 posts
Hello All,

I am in the process of designing a pretty simple form with just a handful of fields - a unique id field, name, email and a captcha verification field. When I test the form out of Firefox and Chrome everything works just fine. The print_r($_POST) output is

Array ( [subid] => f528764d624db129b32c21fbca0cb8d6 [monik] => name [email] => email [capt] => ela ) - all fields present and correct as expected.

However, both IE and Opera seem to swallow up the captcha field. print_r($_POST) gives

Array ( [subid] => f528764d624db129b32c21fbca0cb8d6 [monik] => name [email] => email )

Is there a known bug/issue that is causing this behavior?

I'd much appreciate any help.

#2
Alexander

Alexander

    It's Science!

  • Moderators
  • 4,124 posts
It would help to tell us what type of CAPTCHA implementation you are using, especially the physical form tags. Firefox is a forgiving browser and may allow incorrectly formed HTML in case of the form elements, or it could be an infinite other possibilities from what you have told us.
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.