| 
	
 | 
 Posted by Oliver Jusinger on 06/14/82 11:59 
Cerebral Believer wrote: 
 
> Sorry, I meant I hadn't seen Olivers post.  Thanks Oliver! 
 
You're welcome. alt.php isn't available at my provider (yet), maybe that's 
why you didn't get my post. 
 
 
>  if ($field != "address_2" or "address_3" or "int_code" or "extension") 
 
I guess you mean 
 
if (($field != 'address_2') && ($field != 'address_3') ...) 
 
or better 
 
if (!in_array($field, array('address_2', 'address_3', ...)) 
 
>          $blank_array[$field] = "blank"; 
> Is the right way to express that only these fields are allowed to be 
> blank?  
 
Depends on what you do with $blank_array? 
 
Regards, 
Oliver
 
  
Navigation:
[Reply to this message] 
 |