kupe
Technical User
- Sep 23, 2002
- 376
A selection brings some text onto the webpage. I want to divide each of these entries of text with an <hr>.
And this does it -
while ($row = mysql_fetch_array($result)) {
echo '<p> <hr align="center" width="66%" color="#FAEBD7" size="1"></p>' . $row['Posted'] . '</p>';
Problem is I don't want that <hr> above the first item.
Is there a way to say, 'Not for the first item, please', please, Experts?
And this does it -
while ($row = mysql_fetch_array($result)) {
echo '<p> <hr align="center" width="66%" color="#FAEBD7" size="1"></p>' . $row['Posted'] . '</p>';
Problem is I don't want that <hr> above the first item.
Is there a way to say, 'Not for the first item, please', please, Experts?