libs.inc.php 230 B

123456789101112131415
  1. <?php
  2. $fixpath = dirname(__FILE__);
  3. define ("SMARTY_DIR", "smarty/");
  4. require_once(SMARTY_DIR."Smarty.class.php");
  5. $smarty = new Smarty;
  6. $smarty->compile_dir = "$fixpath/compile";
  7. $smarty->template_dir = "$fixpath/html";
  8. ?>