Jun 26th, 2011, 5:19 PM
(This post was last modified: Jun 26th, 2011, 5:46 PM by MapleWebsites.)
(Dec 5th, 2010, 10:07 AM)Ben Wrote: adding a line to your config.php to always override the PHP_SELF value.
What would that line be? I can't get my test submission to go to page 2
Any ideas?
After I hit submit the first page loads again with the form completely missing?
When I view the source the last thing in the code is:
<form action="credit-application-page1.php" method="post">
So it stops when it reaches this stuff:
<?php
require_once("path/to/form_tools/global/api/api.php");
$fields = ft_api_init_form_page("", "test");
$params = array(
"submit_button" => "submit_button_name_attribute",
"next_page" => "next_page.php",
"form_data" => $_POST
);
ft_api_process_form($params);
?>
Help