Hi there,
First a great job on the tool. Really takes my mind off messy php-mysql programming.
Secondly,
I have facing a problem of moving on to the next page after the submission of the first form (http://nmmun.in/nreg/reg.php). The first form's code snippet is,
Complete codes are attached alongwith if you want a look.
First a great job on the tool. Really takes my mind off messy php-mysql programming.
Secondly,
I have facing a problem of moving on to the next page after the submission of the first form (http://nmmun.in/nreg/reg.php). The first form's code snippet is,
Code:
<?php
require_once("formtools/global/api/api.php");
$fields = ft_api_init_form_page(2, "initialize");
$params = array(
"submit_button" => "saveForm",
"next_page" => "countrysel.php",
"form_data" => $_POST,
"no_sessions_url" => "reg.php"
);
ft_api_process_form($params);
?>
Complete codes are attached alongwith if you want a look.