Advertisement
Guest User

Untitled

a guest
Sep 14th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. ob_start( );
  5. session_start( );
  6. session_name( "" );
  7. error_reporting( E_ALL ^ E_NOTICE );
  8.  
  9.  
  10. $id = addslashes( $_REQUEST['id'] );
  11. $user = addslashes( $_REQUEST['username'] );
  12. $pass = addslashes( $_REQUEST['password'] );
  13.  
  14. define( "PATH", dirname( "/system/" );
  15. define( "STRIP", get_magic_quotes_gpc( ) ? true : false );
  16.  
  17. include( PATH."CONFIG/ez.config.php" );
  18. include( PATH."CONFIG/config.inc.php" );
  19. include( PATH."FUNCTION/function.inc.php" );
  20. include( PATH."SESSION/session_inc.php" );
  21.  
  22. include( "template/".$template."/header.tpl" );
  23. include( "template/".$template."/content.tpl" );
  24. include( "template/".$template."/footer.tpl" );
  25.  
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement