Site Builder CX is not just instant website builder like many others, but it also let you integrate the modules with your existing website or web pages built using other HTML editing tools such as Dreamweaver.
The modules the you can make use are:- - eCommerce - Photo Gallery - Web Blogger - Newsletter
| - Events Calendar - Links Directory - News Publisher - Contact Form - Geo Traffic | - Guestbook - FAQ Support - Customer Helpdesk - Vote Caster - Form Designer |
If you browse into the "sitebcx" folder, you will see a list of folders containing the modules listed above, which are independent from the Site Builder. You can easily call up the dynamic content area for each module to be displayed on your web pages.

The instructions on how to integrate each module front-end with your web page file can be found in the readme.txt file in each folder. Alternatively, you can view the sample file for each folder, namely samplexxxx.php. Below is the integration guidelines for Photo Gallery at photogallery/samplephotogallery.php.
Front-End Integration Guidelines
You can easily integrate the front-end with your web design pages.
| Integration Instructions
| 1. | Before calling any script, put the line below to call the 'config.php' file. This will load all the necessary database connection and class declaration files. | | <?php include_once("config.php") ?> | | 2. | In your HTML code, put the line below to call the menu area such as photo categories, random photo, etc. | | <?php include("photogallery/home.category.php") ?> | | 3. | Meanwhile, to display the gallery's content area such as thumbnails and photo details, put the line below. | | <?php include("photogallery/home.gallery.php") ?> | | 4. | For sample code, please refer to the source code of this file. | | 5. | Finally, as an additional tip, you can put your front-end file in any location you like, but put the call to the Site Builder CX folder using the relative path. | | Example, if your front-end file is at http://yourdomain.com/gallery.php and the Site Builder CX folder is located at http://yourdomain.com/sitebcx/ , use the code below. | | <?php include_once("sitebcx/config.php") ?> | | <?php include("sitebcx/photogallery/home.category.php") ?> | | <?php include("sitebcx/photogallery/home.gallery.php") ?> |
|
|