Automatically exported from code.google.com/p/planningalerts
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

32 строки
441 B

  1. <?php
  2. require_once ("config.php");
  3. $api = new api;
  4. class api {
  5. //Constructor
  6. function api() {
  7. $this->bind();
  8. }
  9. //howto
  10. function bind() {
  11. $form_action = $_SERVER['PHP_SELF'];
  12. $smarty = new Smarty;
  13. $smarty->force_compile = true;
  14. $smarty->compile_dir = SMARTY_COMPILE_DIRECTORY;
  15. $smarty->assign("page_title","API");
  16. $smarty->assign("menu_item","api");
  17. $smarty->display('apihowto.tpl');
  18. }
  19. }
  20. ?>