Advertisement
Chrizz93

Untitled

Apr 29th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.      
  5.     </head>
  6.     <body>
  7. <?php
  8. $servername = "localhost";
  9. $username = "root";
  10. $password = "";
  11. $database = "skp";
  12.  
  13. $conn = new mysqli($servername, $username, $password, $database);
  14.  
  15. if ($conn->connect_error) {    die("Connection failed: " . $conn->connect_error);
  16. }  mysqli_set_charset($conn, "utf8");
  17.  
  18. ?>
  19. <h1 class="h1">SKP håndbog</h1>
  20. <a href="download.php?file=hej.pdf">Download SKP håndbog</a>
  21. <p><a href="download.php">Download SKP informationer</a></p>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement