Advertisement
Guest User

Untitled

a guest
Jan 10th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. $server = "localhost";
  4. $database = "myshoutbox";
  5. $username = "root";
  6. $password = "";
  7.  
  8. $conn = mysqli_connect($server, $username, $password, $database);
  9.  
  10. if (!$conn) {
  11. echo "Error: Unable to connect to database. ";
  12. echo "Debugging errno: " . mysqli_connect_errno();
  13. echo "Debugging error: " . mysqli_connect_error();
  14. exit;
  15. }
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement