Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. if (empty($_POST["postinumero"])) {
  2. $postinumeroerr = "Täytä tiedot";
  3. } else {
  4. $postinumero = test_input($_POST["postinumero"]);
  5. if (!preg_match('/[0-9]{5,5}/',$postinumero))
  6. {
  7. $postinumeroerr = "Vain numeroita ja 5 merkkiä pitkä";
  8. }
  9. }
  10.  
  11. if (empty($_POST["ikä"])) {
  12. $ikäerr = "Täytä tiedot";
  13. } else {
  14. $ikä = test_input($_POST["ikä"]);
  15. if (!preg_match('/^[1-9][0-9]?$|^100$/',$ikä))
  16. {
  17. $ikäerr = "Ikä täytyy olla 1-100";
  18. }
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement