pues mi nivel de html es basico seq ue las tablas yu todo eso pero loq ue no logro es saber como el bucle ese crea los resultados horizontales
no logro crearlo aca me puse a limpiar el codigo
Código PHP:
<html>
<head>
<title>titulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?
$hostname = "localhost";
$dbName = "basededatos";
$username = "usuario";
$password = "contrasena";
$tabla = "boletin";
mysql_connect($hostname,$username,$password) or
print "Error en la Conexión";
mysql_select_db("$dbName") or
print "Error en la Base de datos";
$consulta = "select * from $tabla order by id DESC";
$resultado=mysql_query($consulta);
$numregistros=mysql_numrows($resultado);
?>
</head>
<body>
<table width="154" height="187" border="0" align="center">
<tr>
<?
$i=0;
while ($i < 2)
{
$fecha=mysql_result($resultado,$i,fecha);
$titulo=mysql_result($resultado,$i,titulo);
$descripcion=mysql_result($resultado,$i,descripcion);
$nombre_archivo=mysql_result($resultado,$i,nombre_archivo);
$id=mysql_result($resultado,$i,id);
?>
<td width="148" height="20"><div align="center"><font color="#119151" size="2" face="Arial, Helvetica, sans-serif"><strong><? echo strtoupper($titulo)?></strong></font><span style="text-align: center"></span></div></td>
</tr>
<tr>
<td height="92"><p align="center"><font color="#00803A" size="2" face="Arial, Helvetica, sans-serif"><strong><a href="noti.php?id=<? echo $id ?>"><img src="./<? echo $nombre_archivo?>" name="roll" width="133" height="134" border = "0" align="middle"></a></strong></font><font size="2" face="Arial, Helvetica, sans-serif"> </font></p></td>
</tr>
<tr>
<td height="20"><div align="left">
<p align="justify"><font size="2" face="Arial, Helvetica, sans-serif">
<? $rest = substr($descripcion, 0, 450); // numero de caracteres a mostrar ?>
<!--Tamaño texto noticia-->
</font><font size="1" face="Arial, Helvetica, sans-serif">
<? echo nl2br($rest); ?>
</font><font color="#00803A" size="2" face="Arial, Helvetica, sans-serif"></font></p>
</div></td>
</tr>
<?
$i++;
}
?>
</table>
</body>
</html>
y le cambio los tr por td y aun asi se me desordena y no logro conseguirlo
aca como me lo muestra
http://carloscarrascalsierra.com/boletines/noticias.php