Hi there..
I got a form where want to check if a zipcode is correct..
A zipcode should look like 0000AA or 0000 AA
I made this patern:
PHP Code:
$patroon3 = "[0-9]{4}+[A-Za-z]{2}";
and check ik like this:
PHP Code:
if(!eregi($patroon3, $postcode2)))
But it's isn't working correct..
where did I go wrong?.
_j