Repeat region making my dynamic text not render!
Posted: Tue Jun 08, 2004 7:18 pm
Hi, through trial and error, I discovered that the following code
is preventing this statement from rendering:
If I place the second block before the repeat region, it displays fine, or even within it will work...but anywhere after, the php simply won't output it.
Thanks in advance for your time and help!
Josh
Code: Select all
<?php do { ?>
<table width="259" height="36" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="90" rowspan="2"><img src="images/products/comingsoon.gif" width="90" height="90"></td>
<td height="24" align="left" class="headerwhite"><img src="../Images/blank.gif" width="10" height="10"><?php echo $row_rsGetInfo['prodName']; ?></td>
</tr>
<tr>
<td height="12" align="left"><p><strong><img src="../Images/blank.gif" width="10" height="50" align="left">Our Price</strong>:<?php echo DoFormatCurrency($row_rsGetInfo['prodPrice'], 2, '.', ',', '$'); ?> <br>
<strong>Rental Period</strong>: 1 Day </p></td>
</tr>
</table>
<br>
<?php } while ($row_rsGetInfo = mysql_fetch_assoc($rsGetInfo)); ?>Code: Select all
<?php echo $row_rsGetInfo['subCatName']; ?>Thanks in advance for your time and help!
Josh