Can some tell me what is wrong with this If statement.
$Type = $HTTP_GET_VARS["type"]; If ($ZipSearch) or ($Type = "Zip") { }
Thanks
$Type = $HTTP_GET_VARS["type"]; If ($ZipSearch) or ($Type == "Zip") { }
note the double equals sign (==)