/********************************************************************************* * Filename: index.php *********************************************************************************/ //------------------------------- // index CustomIncludes begin include_once ("./common.php"); include ("./header.php"); include ("./footer.php"); // index CustomIncludes end //------------------------------- session_start(); //=============================== // Save Page and File Name available into variables //------------------------------- $filename = "index.php"; $template_filename = "1index.html"; $header_filename="header.html"; $footer_filename="footer.html"; //=============================== //=============================== // index PageSecurity begin // index PageSecurity end //=============================== //=============================== // index Open Event begin // index Open Event end //=============================== //=============================== // index OpenAnyPage Event start // index OpenAnyPage Event end //=============================== //=============================== //Save the name of the form and type of action into the variables //------------------------------- $sAction = get_param("FormAction"); $sForm = get_param("FormName"); //=============================== // index Show begin //=============================== // Display page //------------------------------- // Load HTML template for this page //------------------------------- $tpl = new Template($app_path); $tpl->load_file($template_filename, "main"); //------------------------------- // Load HTML template of Header and Footer //------------------------------- $tpl->load_file($header_filename, "Header"); $tpl->load_file($footer_filename, "Footer"); //------------------------------- $tpl->set_var("FileName", $filename); //------------------------------- // Step through each form //------------------------------- header_form_show();footer_form_show();form_show(); //------------------------------- // Process page templates //------------------------------- $tpl->parse("Header", false); $tpl->parse("Footer", false); //------------------------------- // Output the page to the browser //------------------------------- $tpl->pparse("main", false); // index Show end //=============================== // index Close Event begin // index Close Event end //=============================== //******************************************************************************** //==============