00001 <?php
00002
00005
00006 set_include_path( '../php' . PATH_SEPARATOR . get_include_path());
00007 set_include_path( '../smarty/libs' . PATH_SEPARATOR . get_include_path());
00008
00009 if (session_id() == "") { session_start(); }
00010
00011 require_once 'Smarty.class.php';
00012 require_once 'sql.php';
00013 require_once('error.php');
00014 require_once('util.php');
00015
00018
00019 function show_help() {
00020 $smarty =& smarty_init();
00021
00022 #$smarty->display('header.tpl');
00023 $smarty->assign('topic', $_GET['topic']);
00024 $smarty->display('help.tpl');
00025 #$smarty->display('footer.tpl');
00026 }
00027
00028 show_help();
00029
00030 ?>