How do I do a simple or statement with three tests? I am using mySQL. This is what I need to compare....
if $row[c_city] is null or $row[c_state] is null or $row[c_zip] is null then do something.
This is what I have for one statement but I dont know how to add more...
if(!$row[c_city]) then do something.
Thanks