Site Menu
 Home : Members : HTML Basics : Web Masters :
 Basic Package
 My eGallery

 
How to create your own modules.
  1. Just copy and paste all of the code below into a file and save as index.php
  2. Then place any html code you want in between the two (  ?>   <?php  )
  3. Then save it in a folder by the name of what you want the mod to be. (Make sure you use an underscore _ as a space in the title of folder)
  4. Then upload that folder to the modules folder on your site and go into your admin panel and activate your new mod.
<?php
include("header.php");
OpenTable();
?>

PUT YOUR HTML CODE HERE, WHATEVER COMES BETWEEN THE 
<html> AND </html> OF YOUR WEB PAGE.
YOU CAN USE JAVA AND ALL. ENJOY :)

<?php
CloseTable();
include("footer.php");
?>