1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| $cpt=0;
while($data=mysql_fetch_array($result))
{
$donnees = true;
$output = (!($cpt%6))?"<tr><td>":"<td>";
echo $output;
echo " <table><tr><td>";
//affichage de l'image
echo "<img src = '".HTTP_SERVER.DIR_WS_CATALOG.DIR_WS_IMAGES.DIR_WS_VIGNETTE.$data['path']."' alt = '".$data['alt']."'>";
echo "</td></tr><tr><td align = 'center'>";
//affichage du bouton d'option:
echo tep_draw_input_field('fichier',$data['id'],'','','radio');
echo " </td></tr> </table>";
$output = (($cpt%6)==2)?"</td></tr>":"</td>";
echo $output;
$cpt++;
} |