(Feb 5th, 2013, 12:09 PM)Joe Wrote: Please add a value to your submit button. In your form change:
<input type="submit" id="Button1" name="" value="Submit" style="position:absolute;left:258px;top:149px;width:96px;height:25px;z-index:2;">
to:
<input type="submit" id="Button1" name="register" value="Submit" style="position:absolute;left:258px;top:149px;width:96px;height:25px;z-index:2;">
"register" was added to the name parameter.
Then change your PHP to:
<?php
require_once("/home/lkssvorm/public_html/ftools/global/api/api.php");
$fields = ft_api_init_form_page(3, "initialize");
$params = array(
"submit_button" => "register",
"next_page" => "success.php",
"form_data" => $_POST,
"file_data" => $_FILES,
"finalize" => true
);
ft_api_process_form($params);
?>
Hope this helps.
Cheers,
Joe
Thanks Joe, I'll try the amendments you list and report back to let you know if it works properly afterwards.
Cheers
Well, that has helped to an extent - when I click submit I am now transferred to my success page - a big improvement.
However, the FormTools admin section is still waiting for the data: "Form Tools hasn't received a successful test submission yet. "
I'll double check everything again but I didn't make any changes other than those you suggested and I haven't changed the success.php.
Cheers