Hey guys, n00b here. I've followed the steps back and forth and searched out the faq and the forms but can't seem to find any info on this issue. If there is another thread with the solution, please point me to it! With that said....
I'm creating a multi-page form and have broken my original form into it's pieces. When I add the first php snippet (before the doctype and HTML tag):
I get a blank page. You can do a view source on it and get nada. Is there an issue with the api.php (chmod to 644). Any ides??? You can view the nothing page here: URL REMOVED
EDIT: This is also the case in when I try to verify the URL in the "Form Information" field.
Thanks in advance!
-Mikael
I'm creating a multi-page form and have broken my original form into it's pieces. When I add the first php snippet (before the doctype and HTML tag):
Code:
<?php
require_once("/form/global/api/api.php");
$fields = ft_api_init_form_page("", "test");
$params = array(
"submit_button" => "Continue",
"next_page" => "/page2.php",
"form_data" => $_POST
);
ft_api_process_form($params);
?>
I get a blank page. You can do a view source on it and get nada. Is there an issue with the api.php (chmod to 644). Any ides??? You can view the nothing page here: URL REMOVED
EDIT: This is also the case in when I try to verify the URL in the "Form Information" field.
Thanks in advance!
-Mikael