Advertisement
Niko454

Untitled

Apr 19th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. //set off all error for security purposes
  3. error_reporting(E_ALL);
  4.  
  5.  
  6. //define some contstant
  7. define( "DB_DSN", "mysql:host=localhost;dbname=secret" );
  8. define( "DB_USERNAME", "root" );
  9. define( "DB_PASSWORD", "secret" );
  10. define( "CLS_PATH", "class" );
  11.  
  12. //include the classes
  13. include_once( CLS_PATH . "/user.php" );
  14.  
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement