Thank you for your reply....
but you know, I just can't get it to work. I am a little lost on where to up your suggestion in my code. What do I replace and where do I place it?
One way that I did it did this..
Adams GT Irons
something every third row
Odyssey DFX Putters
something every third row
Carnoustie Wedges
Cobra SS-i Irons
something every third row
Ping G2i Putters
something every third row
here is the code
$result=mysql_query("SELECT Item_Number, Title, SubID, Avail, Price, CatID FROM tblFeatured WHERE CatID='$CatID';");
if ($row = mysql_fetch_array($result)) {
$i = 1; # counter
while($row = mysql_fetch_array($result)) {
echo "$row[1]<br>";
if($i % 3) {
echo "something every third row<br>";
}
$i++; # increment counter
}
}
I've tried everything that I can think of
Thanks for all your help!