Limiter un tableau h et L

Fermé
asus02 Messages postés 196 Date d'inscription dimanche 30 décembre 2007 Statut Membre Dernière intervention 18 septembre 2013 - 10 janv. 2011 à 21:00
Bonjour,

bonjour, voila j'ai créer un tableau ou les images des inscrits est affiché, je voudrais que le tableau soit limité a 6 images en
horizontal et limité 50 en horizontal.

if($total) {
     echo '<table bgcolor="#FFFFFF" border="1">'."\n";
       
    while($row = mysql_fetch_array($result)) {
       echo '<td bgcolor="#ffffff"><span><a href ="http://fr-findshare.grpminfo.fr/result_'.$row["firstname"].' '.$row["name"].'.html">
	   <img src="http://grpminfo.fr/face/devoliarsed-custom/uploads/all/'.$row["photo_profil"].'" title="'.$row["firstname"].' '.$row["name"].'" ALT="'.$row["firstname"].'.'.$row["name"].'" width="50" height="50" BORDER="0" >
	   </a></span></td>';      
    }
    echo '</table>'."\n";
    
}