index.php

The index.php file is the first page the user is linked to after they select the module. This page should contain whatever PHP code you require on your index page. A bare-bones example can be lifted from the Hello World! module:

<?php
require_once("../../global/library.php");
ft_init_module_page();
ft_display_module_page("index.tpl");
?>

That imports the main Form Tools code file (library.php), initializes the module page and displays the template page (index.tpl).

Edit Page