![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
29/12/2009, 00:39
|
![Avatar de mau_87lp](http://static.forosdelweb.com/customavatars/avatar333694_1.gif) | | | Fecha de Ingreso: diciembre-2009 Ubicación: La Plata,Buenos Aires.
Mensajes: 72
Antigüedad: 15 años, 2 meses Puntos: 3 | |
Respuesta: Borde de tabla en codigo php Hola de nuevo, probe poniendolo asi pero sigue igual.
<table border="3">
<tr>
<?php
echo "<TD><b>usuario</b></TD> ";
echo "<TD><b>titulo</b></TD> ";
echo "<TD><b>contenido</b></TD> ";
?>
</tr>
<?php
while ($row = mysql_fetch_row($result)){
?>
<tr>
<?php
echo "<td>$row[0]</td> ";
echo "<td>$row[1]</td> ";
echo "<td>$row[2]</td> ";
?>
</tr>
<?php
}
?>
</table> <br /></div> |