dprichard
07-24-2007, 08:14 PM
Okay, I am trying to convert from using Dreamweaver PHP to hand coding stuff and am having problems with this.
I am trying to repeat this line of code for just the first 3 records.
<?php do { ?><p><?php echo $row_newsinfo['newstitle']; ?></p>
<p><?php echo $row_newsinfo['newsbody']; ?></p>
<p><a href="insurance-employee-benefit-news.php?newsid=<?php echo $row_newsinfo['newsid']; ?>">Read the full story >></a></p><br>
<p><img src="../images/hr_small_right.jpg" width="239" height="3"></p><br><?php } while ($row_newsinfo <= 3) ?>
I am trying to repeat this line of code for just the first 3 records.
<?php do { ?><p><?php echo $row_newsinfo['newstitle']; ?></p>
<p><?php echo $row_newsinfo['newsbody']; ?></p>
<p><a href="insurance-employee-benefit-news.php?newsid=<?php echo $row_newsinfo['newsid']; ?>">Read the full story >></a></p><br>
<p><img src="../images/hr_small_right.jpg" width="239" height="3"></p><br><?php } while ($row_newsinfo <= 3) ?>