Advertisement
Guest User

Untitled

a guest
May 29th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. //FILE NAME "db.php"
  3.  
  4. ############################
  5. # Connect to DB V.2
  6. ############################
  7. $username="user";
  8. $password="abc123";
  9. $database="your_db_name";
  10.  
  11. mysql_connect($host,$username,$password);
  12. mysql_select_db($database) or die( "Unable to select database");
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement