Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. if(isset($_POST['imie'])&&isset($_POST['nazwisko'])&&isset($_POST['plec'])&&isset($_POST['miasto'])){
  3. echo '<p>Zgłoszenie przyjęte</p>';
  4. foreach ($_POST as $value) {
  5. echo $value.'<br>';
  6. }
  7. }else{
  8. echo '<p>Nieprawidłowo wypełniony formularz</p>';
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement