Advertisement
Guest User

Untitled

a guest
Sep 7th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. https://discord.gg/GUsr2
  2.  
  3. <?php
  4. $servername = "localhost";
  5. $username = "root";
  6. $password = "";
  7. $dbname = "workbreakdown";
  8.  
  9. // Create connection
  10. $conn = new mysqli($servername, $username, $password, $dbname);
  11. // Check connection
  12. if ($conn->connect_error) {
  13. die("Connection failed: " . $conn->connect_error);
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement