Apr 27th, 2010, 10:28 AM
Hi
My form submit button works nicely in Firefox, but in Internet Explorer doesn't submit or process the form. Can anyone help me out?
Here is my code
Here is the submit button code:
Any help is very appreciated!
My form submit button works nicely in Firefox, but in Internet Explorer doesn't submit or process the form. Can anyone help me out?
Here is my code
Code:
require_once(...'/.../global/api/api.php');
$fields = ft_api_init_form_page(1);
$params = array(
"submit_button" => "submit",
"next_page" => "/congratulations.php",
"form_data" => $_POST,
"finalize" => true
);
ft_api_process_form($params);
Here is the submit button code:
Code:
<li class="buttons">
<input type="hidden" name="form_id" value="222015" />
<input id="saveForm" class="button_text" type="submit" name="submit" value="submit" />
</li>
Any help is very appreciated!