Advertisement
Guest User

ss

a guest
Apr 3rd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8"/>
  5. <meta name="description" content="Introduction to this guy's website">
  6. <title>This goes into the titlebar</title>
  7. <link rel="css/style.css" type="text/css"/>
  8. <script type="text/javascript" src="js/main.js"></script>
  9. <meta name="viewport" content="width=device-width, user-scalable=no"/><!-- Disable zoom on smartphone -->
  10. </head>
  11. <body>
  12. <?php
  13. $servername = "localhost";
  14. $username = "root";
  15. $password = "";
  16.  
  17. // Create connection
  18. $conn = new mysqli($servername, $username, $password);
  19.  
  20. // Check connection
  21. if ($conn->connect_error) {
  22. die("Connection failed: " . $conn->connect_error);
  23.  
  24. echo "Connected successfully";
  25. }
  26.  
  27.  
  28. ?>
  29. </body>
  30.  
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement