Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. //Do not reuse passwords or salt.
  3. $host = "host";
  4. $username = "username";
  5. $password = "password";
  6. $dbname = "phpmyfarm";
  7.  
  8. //Once you set the salt you can not change it.
  9. $salt = "";
  10.  
  11. //Setup login to allow for a user to be created.
  12. $enableSetupCreds = true;
  13. $setupCreds = array(
  14. 'admin',
  15. 'p@ssw0rd!'
  16. );
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement