Forum Moderators: coopster
I have created two mysql queries. The result from one query is echoed in one column of a table and the result from the other query is echoed in the next column. These table cells repeat through a loop so that they display all records.
However, because I am using TWO queries, I have no clue how to loop the region.
I am using dreamweaver's standard 'repeat region' behavior, which obviously isn't going to work because my repeated region relies on two recordsets:
<?php do {?>
<tr><td><?php echo $row_rs_msg_data['topic_id'];?></td></tr>
<?php } while ($row_rs_msg_data = mysql_fetch_assoc($rs_msg_data));?>
Any help will be much appreciated!