Advertisement
Guest User

Untitled

a guest
May 17th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1.  <?php
  2.  
  3. define('PASSWORD_SALT', 'Labp5MRZdj');
  4. define('COOKIE_SALT', 'MWSrN0DiGD');
  5.  
  6. $host="localhost"; // Host name
  7. $username="root"; // Mysql username
  8. $password=""; // Mysql password
  9. $db_name="runningclub"; // Database name
  10.  
  11. // Connect to server and select databse.
  12. mysql_connect("$host", "$username", "$password")or die("cannot connect");
  13. mysql_select_db("$db_name")or die("cannot select DB");
  14.  
  15.  
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement