Feb 24th, 2010, 5:56 AM
Hi,
I've tried for days making a multi page form work. Whatever I do, I get "Form Tools hasn't received a successful test submission yet. "
The pages hasand the final page before the "thanks" page has the additional "finalize" tag.
The form is pretty vast, and I have tried a test submit with all fields filled in and NOT filled in. No go regardless.
I have only text fields, save from 6 drop down lists, like this:
I am just about to give up, but thought I'd give it a last chance by asking for help or hints here.
Please, what could be the reason for not being able to finnish the form?
I've tried for days making a multi page form work. Whatever I do, I get "Form Tools hasn't received a successful test submission yet. "
The pages has
Code:
<?php
require_once("../form/formtools/global/api/api.php");
$fields = ft_api_init_form_page(2, "initialize");
$params = array(
"submit_button" => "submit",
"next_page" => "sista.php",
"form_data" => $_POST
);
ft_api_process_form($params);
?>
The form is pretty vast, and I have tried a test submit with all fields filled in and NOT filled in. No go regardless.
I have only text fields, save from 6 drop down lists, like this:
Code:
<select name="leveransmanad" id="leveransmanad" style="width:150px;">
<option selected="selected">MÃ¥nad.....</option>
<option value="Jan">Jan</option> etc
I am just about to give up, but thought I'd give it a last chance by asking for help or hints here.
Please, what could be the reason for not being able to finnish the form?