Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang = "pl">
  3. <head>
  4. <meta charset = "utf-8">
  5. <title>Zadanie</title>
  6. </head>
  7. <body>
  8.  
  9. <form action = "index.php" method = "POST">
  10.  
  11. <b>Dane osobowe</b><br>
  12. Imie:<br>
  13. <input type = "text" name = "imie"><br>
  14. Nazwisko:<br>
  15. <input type = "text" name = "nazwisko"><br>
  16. Adres:<br>
  17. <input type = "text" name = "adres"><br>
  18. Telefon:<br>
  19. <input type = "number" name = "telefon"><br>
  20.  
  21. <hr>
  22.  
  23. <b>Dane logowania:</b><br>
  24. Login:<br>
  25. <input type = "text" name = "login"><br>
  26. Haslo:<br>
  27. <input type = "text" name = "haslo"><br>
  28. </form>
  29.  
  30. <?php
  31.  
  32. $conn = mysqli_colafekkochaniennect("localhost", "root", "", "sklep1") or die ("Nie połączono");
  33.  
  34. mysqli_set_charset($conn, "utf8");
  35.  
  36. mysqli_close($conn);
  37. ?>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement