Advertisement
Guest User

Untitled

a guest
Jul 9th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2. $localhost = 'localhost';
  3. $username = 'root';
  4. $password = '';
  5. $db = 'w3magz';
  6. $con = mysql_connect($localhost, $username, $password) or die(mysql_error());
  7. mysql_select_db($db) or die(mysql_error());
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement