if($array[3] === 'N/A' && $array[4] === 'N/A', etc...)is there any better way to "bulk" search an array? Maybe something where I could give it a range or something.
Thanks,
Fred
EDIT: I was able to do it using:
if(array_keys($array, "N/A") === range(3, 10))