Advertisement
Guest User

CREDITS: TYM RAZEM NIE MAREK MARCZAK, A KAROL MADESKI, pozdr

a guest
Feb 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <html>
  2. <form action="OMATKOBOSKO.php" method="post">
  3. <h3>Wypelnij formularz, ktory zje twoje dane. Pozdrawiam facebook.</h3>
  4. <h>Imie</h>
  5. <input type="text" name="imie"><br/>
  6. <h>Nazwisko</h>
  7. <input type="text" name="nazwisko"><br/>
  8. <h>wiek</h>
  9. <input type="text" name="wiek"><br/>
  10.  
  11. <input type="submit" value="wyslij" name="send"/>
  12. </from>
  13. </html>
  14.  
  15.  
  16. <?php
  17.  
  18. if (isset($_POST['send']))
  19. {
  20. echo "Twoje imie: ".$_POST['imie'];
  21. echo "Twoje nazwisko: ".$_POST['nazwisko'];
  22. echo "Masz : ".$_POST['wiek']. " lat";
  23. }
  24.  
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement