Instructions:
Recently we did some updation in utility files on January 2017. Please download now
1. Copy the Javascript and CSS utilities.
Download utilities and extract it.
2. Copy the generated form code and put in the body section of the HTML document.
3. Copy the generated style code and put in the head section.
4. Copy the generated javascript code and put below the form code.
5. Refer the below HTML document structure if you are new to it.Save filename as formpage.php.
6. Create another filename and copy the generated PHP Server Code.
7. Execute the generated Mysql Table Structure in the database and configure/connect database name in
cdynforms/cdynconfig.php.
<?php
include_once(dirname(__FILE__) . "/cdyn_includes/database/db.php");
include_once(dirname(__FILE__) ."/cdyn_includes/phputil.php");
$pageName="formpage.php";
? >
<html>
<head>
<title>Forms</title>
<script src="cdyn_includes/cdynutil.js"></script>
<!--<script src="cdyn_includes/cdynutil-min.js"></script>-->
<script src="cdyn_includes/cdynevents.js"></script>
<link rel="stylesheet" href="cdyn_includes/cdynutil.css" />
<style type="text/css">
<!--[Generated CSS Code:1 Here]
[Generated CSS Code:2 Here]-->
</style>
</head>
<body>
<!-- [Generated Form Code Here]-->
<script type="text/javascript">
<!-- [Generated Javascript Code Here]-->
</script>
</body>
</html>