So, I'm modifying some old code on our system and have ran into this stupid roadblock. Essentially, the old system had these lre_codes with values 1-8. The lre_codes have been changed and now have the following values (32,35,13,34,15,16,36,33). Here is the way the original code was written....
if (($lre_code>0)&&($lre_code<9)){
$cnts['s_d'][$lre_code][$lre_1077_age]=$cnts['s_d'][$lre_code][$lre_1077_age]+1;
$cnts['s_d'][$lre_code]['total']=$cnts['s_d'][$lre_code]['total']+1;
$cnts['s_d']['age_counts'][$lre_1077_age]=$cnts['s_d']['age_counts'][$lre_1077_age]+1;
$cnts['s_d']['grandtotal']=$cnts['s_d']['grandtotal']+1;
}
I need to change the if statement to check for the above codes and I just can't figure out how to get it to work. Very simple, most likely.
Any help is much appreciated.
Thanks,
Scott