Adilol

coreconfig.php

Nov 15th, 2011
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. <?php
  2. $CONFIG = array(); //specifies the config as an array - cleaner than define, yo
  3.  
  4. $CONFIG['mysql']['host'] = 'localhost'; //mysql host
  5. $CONFIG['mysql']['user'] = 'root'; //mysql user
  6. $CONFIG['mysql']['pass'] = 'root'; //change to your password //change pw pls kthx
  7. $CONFIG['mysql']['db'] = 'zetadb'; //keep as zetadb
  8.  
  9. $CONFIG['site']['title'] = 'PrjCore'; //change to your site name
  10. $CONFIG['site']['email'] = '[email protected]'; //change to site email
  11. $CONFIG['site']['desc']  = 'site desc here'; //change
  12. ?>
  13.  
Advertisement
Add Comment
Please, Sign In to add comment