Guest User

Untitled

a guest
Jan 13th, 2016
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. $host="localhost"; // Host name
  4. $username=""; // Mysql username
  5. $password=""; // Mysql password
  6. $db_name=""; // Database name
  7.  
  8.  
  9. //Connect to server and select database.
  10. mysql_connect("$host", "$username", "$password")or die("cannot connect to server");
  11. mysql_select_db("$db_name")or die("cannot select DB");
  12.  
  13. ?>
Add Comment
Please, Sign In to add comment