I have a little script that prints a certain amount of rows in a mysql database.
Is there any way to make it so that after every second row it prints, ther
add new variable before the loop
$i = 0;
then in your loop add
if ($i != 0 && $i%2 == 0) echo '';