i have this problem,i need to do some modifications

Hi

And thanks for dropping by…

Okay i have this problem,i need to do some modifications in the registration page (zip code)it will only recognize us zip codes i need it to recognize uk postcode so heres the code

[php]if (!isNotNull($txtZIP)) {
$message .= "* Zip cannot be empty!
";
}
elseif($txtZIP==0 || (strlen($txtZIP)!=5 && $ddlCountry==“US”))
{
$message .= "* Enter valid Zip code!
";[/php]

if anyone can help it would be very helpful

Thanks

[php]elseif($txtZIP==0 || (strlen($txtZIP)!=5 && ($ddlCountry==“US” || $ddlCountry==“UK”) ))[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service