Advertisement
Guest User

Merdas

a guest
Jun 26th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h1>My first PHP page</h1>
  6.  
  7. <?php
  8. $servername = "Localhost";
  9. $username = "lyricaldogg";
  10. $password = "LeoKobKac1982";
  11.  
  12. // Create connection
  13. $conn = new mysqli($servername, $username, $password);
  14.  
  15. // Check connection
  16. if ($conn->connect_error) {
  17. die("Connection failed: " . $conn->connect_error);
  18. }
  19. echo "Connected successfully";
  20. ?>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement