Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>test</title>
  6.     <link href="stylesheet.css" rel="stylesheet" type="text/css">
  7.  
  8.     <?php
  9.        
  10.  
  11.        $servername = "localhost";  //nazwa serwera
  12.        $username = "marcin";       //nazwa użytkownika
  13.        $password = "1234";         //hasło do profilu użytkownika
  14.  
  15.        // Tworzenie połączenia
  16.        $conn = new mysqli($servername, $username, $password);
  17.  
  18.        // Sprawdzanie połączenia
  19.        if ($conn) {
  20.            echo "Połączono!";
  21.        }else
  22.        echo "Nie udało się nawiązać połączenia :((";
  23.  
  24.        
  25.    ?>
  26.  
  27.  
  28. </head>
  29. <body>
  30.         <div class="x">costam</div>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement