Mostrar registros desde Mysql con php
Necesito mostrar los registros de una tabla,
Tengo el siguiente código, pero solo aparece el encabezado de la tabla
$conexion = mysql_connect('host',
'user','*****.');
mysql_select_db('bd',$conexion);
$sql = "select * from tabla";
mysql_query($sql,$conexion);
echo "<table>";
echo "<tr>";
echo "<td>Codigo</td>";
echo "<td>nombre</td>";
echo "<td>fecha</td>";
echo "<td>precio</td>";
echo "</tr>";
$reg =mysql_fetch_array($result,mysql_both);
while($reg)
{
echo"<tr>";
echo"<td>".$reg[0]."</td>";
echo"<td>".$reg[1]."</td>";
echo"<td>".$reg[2]."</td>";
echo"<td>".$reg[3]."</td>";
$reg =mysql_fetch_array($result,mysql_both);
echo"</tr>";
}
echo"</table>";
mysql_close($conexion);
1 respuesta
Respuesta de Jose Alberto Cornejo Medinilla
1