Hola, tengo un bucle while y me preguntaba como puedo insertar un trozo de código tras X repeticiones, en mi caso 6.
Código:
Código PHP:
<?php
$sql="select DISTINCT * from decks";
$result= mysql_query($sql) or die(mysql_error()); ?>
<table cellspacing="20" style="margin-left: 3%; font-family: Verdana, Geneva, sans-serif;" width="684" border="0">
<tr>
<?php while($row = mysql_fetch_array($result)){
echo "<td><table>
<td><center>$row[marca] <br> $row[nombre]</center></td>
</tr>
<tr>
<td></center><img src='script/resources/decks/$row[imagen].png'></center></td>
</tr>
<tr>
<td><center><input type='radio' name='$row[imagen]'></center></td>
</tr>
</table></td>";
}?>
</tr>
</table>