Feb 5th, 2013, 12:09 PM
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
<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