Hola para todos a continuación pongo un script el cual al ejecutarlo me muestra la informacion de una base de datos de menera vertical...asi:
1
2
3
me gustaria que fuera de manera Horizontal es decir algo asi:
1 - 2 - 3
aca pongo el codigo que tengo
Código PHP:
<html>
<head>
<?
$hostname = "localhost";
$dbName = "basededatos";
$username = "usuario";
$password = "contraseña";
$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);
?>
<title>titulo pagina</title>
</head>
<body>
<table width="147" height="100" border="0" align="center">
<tr>
<?
$i=0;
while ($i < 3)
{
$fecha_new=mysql_result($resultado,$i,fecha);
$titulo_new=mysql_result($resultado,$i,titulo);
$descripcion_new=mysql_result($resultado,$i,descripcion);
$nombre_archivo=mysql_result($resultado,$i,nombre_archivo);
$id_new=mysql_result($resultado,$i,id);
?>
</tr>
<tr>
<td width="129" height="92"><font color="#00803A" size="2" face="Arial, Helvetica, sans-serif"><strong><img src="./<? echo $nombre_archivo?>" name="roll" width="143" height="106" border = "0" align="middle"></strong></font></td>
</tr>
<tr>
<td height="20"><p align="center"><font size="2" face="Arial, Helvetica, sans-serif"> </font><font size="2" face="Arial, Helvetica, sans-serif">
<?
$rest = substr($descripcion_new, 0, 450); // el numero segundo es el numero de caracteres para dar mas informacion.
?>
<?
echo nl2br($rest);
?>
</font></p></td>
</tr>
<tr>
<td height="21"><font color="#00803A" size="2" face="Arial, Helvetica, sans-serif"><strong><a href="noti.php?id=<? echo $id_new ?>"><img src="vermas.jpg" width="48" height="11" border="0"></a></strong></font></td>
</tr>
<tr>
</tr>
<?
$i++;
}
?>
</table>
</body>
</html>
gracias amigos espero me puedan ayudar a modificar el codigo