I've got a loop from which I can't seem to get ANY feedback, and I'm stuck. Here's a summary of what I've got. The first WHILE loop works wonderfully, but the one in the IF is non-responsive. PHP Code: $result_1='...all the qry stuff...'; echo 'Rows = '.mysql_num_rows($result_1).': '; // for testing (successfully prints count). while ($row_1 = mysql_fetch_assoc($result_1)){ // pre-build an array of the shift&


