- Just copy and paste all of the code below into a file and save as index.php
- Then place any html code you want in between the two ( ?> <?php
)
- 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)
- 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");
?>
|