Guest User

Untitled

a guest
Oct 5th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. $host = 'localhost';
  4. $username = 'root';
  5. $password = '12345678';
  6. $db = 'onelink';
  7.  
  8. mysql_connect($host,$username,$password) or die('Connect Failed');
  9. mysql_query('set names utf8');
  10. mysql_select_db($db) or die('Select DB Failed');
Add Comment
Please, Sign In to add comment