Advertisement
Guest User

index.php

a guest
Jul 22nd, 2015
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  * Basic PHP Settings and SESSION START
  5.  */
  6. session_start();
  7. error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING);
  8. header('Content-type: text/html; charset=utf-8');
  9.  
  10. /*
  11.  * Load App.class
  12.  */
  13. require_once 'app/class/App.class.php';
  14.  
  15. App::initApp();
  16. App::initRequest();
  17. App::getApp()->buildPage();
  18. App::getSAMP()->close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement