load_file($template_filename, "main"); //------------------------------- // Load HTML template of Header and Footer //------------------------------- $tpl->load_file($header_filename, "Header"); //------------------------------- $tpl->set_var("FileName", $filename); //------------------------------- // Step through each form //------------------------------- Menu_show();Form_show(); //------------------------------- // Process page templates //------------------------------- $tpl->parse("Header", false); //------------------------------- // Output the page to the browser //------------------------------- $tpl->pparse("main", false); // disclaimer Show end //=============================== // disclaimer Close Event begin // disclaimer Close Event end //=============================== //******************************************************************************** //=============================== // Display Menu Form //------------------------------- function Form_show() { global $tpl; global $db; $sFormTitle = ""; //------------------------------- // Form Open Event begin // Form Open Event end //------------------------------- //------------------------------- // Set URLs //------------------------------- //------------------------------- // Form Show begin //------------------------------- $tpl->set_var("FormTitle", $sFormTitle); //------------------------------- // Form BeforeShow Event begin // Form BeforeShow Event end //------------------------------- //------------------------------- // Show fields //------------------------------- $tpl->parse("FormForm", false); //------------------------------- // Form Show end //------------------------------- } //=============================== ?>