This is my partial code:
while($row = $db->fetch_array($query))
{
echo $row['row_name'];
}
How can I make it so it will add a break tag after each result, but not the last result?
|
|
Put the output into an array, then join the array with
|
||||
|
You could do this. No arrays or counters.
|
|||||||||
|
|
|||
|
|