Guest User

Untitled

a guest
Dec 14th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. class Config
  2. {
  3. const host = "dbserver";
  4. const name = "dbname";
  5. const user = "dbuser";
  6. const pass = "dbpass";
  7. }
  8.  
  9. include "config.php";
  10. $db = MySQLWrapper(Config::host, Config::name, Config::user, Config::pass);
  11. //... init sessions, spl_autoloads, class maps and other stuff
  12.  
  13. require_once "full path to init.php"
  14. create page
Add Comment
Please, Sign In to add comment