Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8.  
  9. <form method="POST">
  10.  
  11. <input type="tekst" name="imie"></input>
  12. <button type="submit" >Sprawdz</button>
  13.  
  14. </form>
  15.  
  16. <?php
  17.  
  18. $a = $_POST['imie'];
  19.  
  20. switch($a){
  21. case "michal": echo("Witaj ".$a); break;
  22. default: echo("nie znam cie"); break;
  23.  
  24. }
  25.  
  26. ?>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement