I just can't figure out what's wrong with this loop. I was hoping that maybe you fine folks could help me out. This "if" line is the one that's tossing the error. I've got this big array, and data[6] is going to be x:xx format, string to time. I've tried removing that, but i get nowhere:
if ($data[4] >= 15) and ($data[5] <= 10) and ($data[6] >= mktime(0, 3, 10, 0, 0, 0)) {
continue;
} else {
basically, it should just skip this record if those conditions are met, otherwise hit the else. It's just not happening.
Thanks so much
-Marty