| @@ -1,4 +1,4 @@ | |||||
| <?php /* Smarty version 2.6.16, created on 2007-04-09 16:50:59 | |||||
| <?php /* Smarty version 2.6.16, created on 2007-04-09 17:21:15 | |||||
| compiled from rss.tpl */ ?> | compiled from rss.tpl */ ?> | ||||
| <?php echo '<?xml'; ?> | <?php echo '<?xml'; ?> | ||||
| version="1.0" encoding="UTF-8"<?php echo '?>'; ?> | version="1.0" encoding="UTF-8"<?php echo '?>'; ?> | ||||
| @@ -1,4 +1,4 @@ | |||||
| <?php /* Smarty version 2.6.16, created on 2007-04-09 17:14:56 | |||||
| <?php /* Smarty version 2.6.16, created on 2007-04-09 17:25:09 | |||||
| compiled from header.tpl */ ?> | compiled from header.tpl */ ?> | ||||
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||||
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||||
| @@ -0,0 +1,31 @@ | |||||
| <?php | |||||
| require_once ("config.php"); | |||||
| $api = new api; | |||||
| class api { | |||||
| //Constructor | |||||
| function api() { | |||||
| $this->bind(); | |||||
| } | |||||
| //howto | |||||
| function bind() { | |||||
| $form_action = $_SERVER['PHP_SELF']; | |||||
| $smarty = new Smarty; | |||||
| $smarty->force_compile = true; | |||||
| $smarty->compile_dir = SMARTY_COMPILE_DIRECTORY; | |||||
| $smarty->assign("page_title","API"); | |||||
| $smarty->assign("menu_item","api"); | |||||
| $smarty->display('apihowto.tpl'); | |||||
| } | |||||
| } | |||||
| ?> | |||||