PHP - Repeat Region question
I have a table with a repeat region that has 2 record set. The first is the list of the data and just one of the fields uses another table to count the record_id. I nested the region and first set of records show the count and it does change if the other field is added so I know the first one is working but all other regions (other than the first one) have that field as blank.
Here is the code:
<?php do { ?>
<table wideth = "620" border = "1" id="tablen">
<tr>
<th width="54">Date</th>
<th width="60">Day</th>
<th width="60">Time</th>
<th width="148">Course</th>
<th width="56">Cost</th>
<th width="56">Signed Up</th>
<th width="51">Field</th>
<th width="93">Register</th>
</tr>
<tr>
<td><?php echo $row_getEven['even_date'];?></td>
<td><?php echo $row_getEven['round_day'];?></td>
<td><?php echo $row_getEven['time'];?></td>
<td><?php echo $row_getEven['course'];?></td>
<td><?php echo $row_getEven['player_cost'];?></td>
<? do { ?>
<td><?php echo $row_getCountp['count_even'];?></td>
<?php } while ($row_getCountp = mysql_fetch_assoc($getCountp));?>
<td><?php echo $row_getEven['register'];?></td>
</tr>
</table>
</form>
</p>
<p><img src="Images/each.jpg" width="620" height="10" /></p>
<?php } while ($row_getEven = mysql_fetch_assoc($getEven));?>
Any ideas?
