The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
|
![]() |
URGENT! Form not working in Internet Explorer! - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: API (https://forums.formtools.org/forumdisplay.php?fid=17) +--- Thread: URGENT! Form not working in Internet Explorer! (/showthread.php?tid=192) |
URGENT! Form not working in Internet Explorer! - novatron6 - Jun 25th, 2009 Hey All, My form works great in Firefox and Safari, but doesn't continue (multipage form) in Internet Explorer. Anyone have any ideas why this would be happening? Here is my code: Code: require_once("../process/global/api/api.php"); The page is here: https://www.missionyear.org/finishstrong/ Any help is very appreciated! Here is the form code: Code: <form action="<?=$_SERVER['PHP_SELF']?>" method="post"> RE: URGENT! Form not working in Internet Explorer! - Big Al - Aug 6th, 2009 I looked at your Finish Strong page and am trying to do something very similar. I was wondering a few things tho. Who did you use for your payment gateway? Or are you collecting and processing the Credit Cards yourself? Are you using SSL? RE: URGENT! Form not working in Internet Explorer! - novatron6 - Aug 6th, 2009 (Aug 6th, 2009, 9:15 AM)Big Al Wrote: I looked at your Finish Strong page and am trying to do something very similar. Hey Al, I have it set up this way: 1. It uses a SSL certificate 2. The first page goes into formtools, only non-sensitive data 3. The second page gets some info passed from the first page and the form takes the sensitive data and goes to a hushmail account (hushmail.com, protected forms), the CC info is processed manually through our bank. Hope that helps, thanks! doug RE: URGENT! Form not working in Internet Explorer! - Ben - Aug 6th, 2009 Hey Doug - Another thing to try is temporarily switch your submit button to a regular (non-image) submit button. I have a vague recollection that some versions of IE won't pass along the submit button name-value pair to the server. If it DOES work on IE with a regular submit button, just change the line of PHP at the top from this: PHP Code: "submit_button" => "continue", PHP Code: "submit_button" => "hidden_continue", Code: <input type="hidden" name="hidden_continue" value="1" /> That should work. - Ben |