Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/07/2011, 12:27
vvacarc
 
Fecha de Ingreso: julio-2011
Mensajes: 3
Antigüedad: 12 años, 9 meses
Puntos: 0
mostrar resultado en 2 filas

hola me gustaria poder mostrar los siguientes resultados en dos filas porfavor



<?php
if(!defined('NUKE_ET')){
Header("Location: ../error.php?op=e403");
die();
}
global $prefix, $db;
$content = "<p align=\"center\"><img width=\"471\" height=\"75\" align=\"textTop\" src=\"http://www.miweb.es/0001.png\" alt=\"\" /></p>
<table width=\"20%\" cellspacing=\"2\" cellpadding=\"1\" border=\"5\" align=\"center\" summary=\"\">
<tbody>
<tr>";
$result2=$db->sql_query("SELECT bid, titulo, portada FROM ".$prefix."_bittorrents_bittorrents WHERE cid='2' ORDER BY bid DESC LIMIT 9");
while(list($id, $titulo, $imagen) = $db->sql_fetchrow($result2)){
$content .= "<td><a href=\"modules.php?name=Bittorrents&amp;op=descarg ar&amp;id=$id\"><img width=\"85\" height=\"120\" src=\"$imagen\" alt=\"$titulo\" /></a></td>";
}
$content.="</tr>
</tbody>
</table>";
?>