Advertisement
Guest User

Untitled

a guest
Jun 11th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2.  
  3. session_start();
  4.  
  5. error_reporting(E_ALL ^ E_NOTICE);
  6. ini_set('display_errors', 'On');
  7.  
  8. include('DBClass.php');
  9. include('AdminClass.php');
  10.  
  11. include('smarty/libs/Smarty.class.php');
  12.  
  13. $smarty = new Smarty();
  14. $smarty->compile_check = true;
  15. $smarty->template_dir = 'templates/';
  16. $smarty->compile_dir = 'smarty/templates_c/';
  17.  
  18. $obj = new BackOffice();
  19.  
  20. $smarty->assign('obj', $obj);
  21. $smarty->display('admin_index.tpl');
  22.  
  23.  
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement