Guest User

Untitled

a guest
Mar 6th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?
  2.  
  3. class Main {
  4. /*
  5. ** Website Configuration
  6. ** NOTE: Omit trailing slashes!
  7. */
  8. public $webroot = '/var/www/webroot';
  9. public $class_path = $this->webroot . '/classes';
  10. public $adodb_path = $this->webroot . '/adodb';
  11.  
  12. /*
  13. ** Database Configuration
  14. */
  15. private static $db_host = 'localhost';
  16. private static $db_user = 'root';
  17. private static $db_pass = 'blah';
  18. private static $db_name = 'database';
  19. private static $db_type = 'mysql';
  20.  
  21. public function __construct ( ) {
  22.  
  23. }
  24. }
  25.  
  26. ?>
Add Comment
Please, Sign In to add comment