hola,tengo el siguiente codigo y el problema es que no sale el borde de la imagen de la caratula y está puesto.
<? include ("config.php"); //tags
$sql = "select * from noticias where tipo='PC' order by descargados desc LIMIT 30";
$squery = mysql_query($sql);
while($row = mysql_fetch_array($squery)){
$topurl = $row["id"];
$toptitulo = $row["titulo"];
$alt = $toptitulo;
$top = $row['caratula'];
echo "<div style='float:left;'><table height=100% width=100%><tr>";
echo "<td align='center' width='150px'><a href='juego.php?id=$topurl'><img src='".$top."' height='190' width='140' border='1' alt='$alt' /></a></td></tr>";
echo "<tr><td align='center' height='40px width='150px''><b>".$toptitulo."</b></td>";
echo "</tr></table></div>";
}
?>
<img src=''style='border: 1px solid;'>
gracias! no se porqué no se me ocurrió probar con esto ;)
Cita de: viher en 17 Octubre 2010, 15:50 PM
gracias! no se porqué no se me ocurrió probar con esto ;)
De nada ^^
Aunque de la otra forma te debería funcionar :P