Advertisement
Guest User

Untitled

a guest
Sep 30th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?
  2. $host = "127.0.0.1"; $db = "derp"; $username = "derp"; $password = "obfuscated";
  3. $link = mysql_connect($host, $username, $password);
  4. if (!$link) {
  5.     die('Could not connect: ' . mysql_error());
  6. }
  7. echo 'Connected successfully';
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement