Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/07/2006, 19:06
Avatar de Nefertiter
Nefertiter
 
Fecha de Ingreso: enero-2003
Ubicación: Rosario
Mensajes: 1.316
Antigüedad: 21 años, 4 meses
Puntos: 9
hay una faq al respecto creo pero basicamente esto tenes q haceR:

pone :
Código PHP:

$columas = 3;

 <table  style="border:1px solid #4A4A4A; background: #EBE5CB; width:100%">
<tr>

<?
for ($i $row=mysql_fetch_array($result) ; $i++){
?>
  <td><a href="<? echo $row["link"]; ?>" target="_blank"><img  alt="<? echo $row["nombre"]; ?>" width='150px' heigth'112px' src="<? echo $row["link"];?>"></a></td>
<?
if($i%$columas ==0) echo '</tr><tr>';

}
?>
</tr>
</table>