Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. </head>
  5. <body>
  6. <form method="post" action="index2.php">
  7.  
  8. Podaj imie rezysera<input type="text" name="imie"><br>
  9. Podaj nazwisko rezysera<input type="text" name="nazw"><br>
  10. <input type="submit" value="Wyślij">
  11. </form>
  12. <?php
  13.  
  14. if($_SERVER["REQUEST_METHOD"]=="POST"){
  15. $imie=$_POST['imie'];
  16. $nazw=$_POST['nazw'];
  17. }
  18.  
  19. $polaczenie=mysqli_connect('localhost','root','','filmoteka');
  20. $sql=(mysqli_query($polaczenie,"insert into rezyserzy values('$imie','$nazw')"));
  21.  
  22. ?>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement