Advertisement
programusy

Untitled

May 11th, 2023
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="Utf-8">
  4. <style>
  5. *{
  6. background-color: black;
  7. color: green;
  8. text-align: center;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <form action="" method="POST">
  14.  
  15. <input type="number" name="id"><br>
  16.  
  17. <input type="text" name="imie"><br>
  18.  
  19. <input type="text" name="nazwisko"><br>
  20. <input type="submit" name="wstaw">
  21. </form>
  22. <?php
  23. $conn = mysqli_connect('localhost', 'root', '', 'niepuste') or die ('cos nie chyta');
  24. if(isset($_POST["wstaw"])){
  25. $id = $_POST["id"];
  26. $imie = $_POST["imie"];
  27. $nazwisko = $_POST["nazwisko"];
  28. }
  29. if(!empty($id) && !empty($imie) && !empty($nazwisko)){
  30. $insert = mysqli_query($conn, "INSERT INTO niepuste VALUES (' $id ', ' $imie ', ' $nazwisko ')");
  31. echo "<h1>"."Pomyślnie wpisano dane do bazy!!!!"."</h1>";
  32. }
  33. else{
  34. echo "Wpisałeś coś niepoprawnie";
  35. }
  36. ?>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement