Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. </head>
  6. <body>
  7. <form method="post" action="spr1.php">
  8. Nazwisko: <input type="text" name="nazw"/> PESEL: <input type="text" name="PESEL"/> <button type="submit"> Wyślij </button>
  9. </form>
  10. <?php
  11. if(!(file_exists('baza.txt'))){
  12. $plik = fopen("baza.txt","w+");
  13. fwrite($plik,"");
  14. fclose($plik);
  15. }
  16. $plik = fopen("baza.txt","a+");
  17. $wpis = "\r\n".$_POST['nazw']." ".$_POST['PESEL']."";
  18. fputs($plik,$wpis);
  19. fclose($plik);
  20. ?>
  21. <b> Nazwisko </b> <b> PESEL </b> </br>
  22. <?php
  23. $plik = fopen("baza.txt","r");
  24. while(!(feof($plik))){
  25. $linia = fgets($plik);
  26. echo $linia."</br>";
  27. }
  28. ?>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement