| One of our product uniqueness is we made our scripts capable to fit into your existing web design. |
||||
![]() |
![]() |
![]() |
![]() |
![]() |
| Before | After Integration | |||
1. Create New PHP Page |
Create a PHP page where you would like to publish your online forms. Save the web page file with .php extension, such as form.php. You can put the file in any directory on the server.
2. Find the Document Path |
To ensure that your Form Designer works regardless the location of the PHP page, you will need to add your server's Document Path to all the PHP include codes.
To find the Document Path, open the
/myadmin/config.php
file with your text editor, and note down the value for $path["docroot"]. Let's assume the Document Path is C:/wwwroot/user/myadmin/
3. Include config.php, session.php and css.php |
Insert the codes below to your PHP page to call the
config.php
,session.php
andcss.php
. This will load all the necessary database connection, program libraries and CSS.To do this, open the form.php file with text editor, and put it to the
topmost line (line 1)
of the PHP file, without any preceded character.<?php
include_once ("C:/wwwroot/user/myadmin/config.php");
include_once ("C:/wwwroot/user/myadmin/common/session.php");
include_once ("C:/wwwroot/user/myadmin/common/css.php");
?>
4. Include Form Designer Content |
a. To display online forms in the content area:-
<?php $form_id=Each form has its own identifier ID,[ID]
; include("C:/wwwroot/user/myadmin/formdesign/home.form.php"); ?>
[ID]
is used to call up the form. To get form's ID, login to your Form Designer administration area and proceed to Manage Form : List Form. In the Inclusion Code column, click on Get Code to view the ID.
5. View Integration Result |
Now, proceed to your web page URL, eg: http://your-domain-name/form.php to view your Form Designer front-end integration result.
Proceed to Buy Now , Online Demo or Talk to Us









