Advertisement
Guest User

lol

a guest
Mar 25th, 2018
146
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. $servername = "localhost";
  3. $username = "root";
  4. $password = "";
  5. $dbname = "timedrun";
  6. $conn = new mysqli($servername, $username, $password, $dbname);
  7.  
  8. if ($conn->connect_error) {
  9.     die("Connection failed - the bed bugs fiddled with the settings: " . $conn->connect_error);
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement