
02/09/2002, 14:23
|
| | Fecha de Ingreso: agosto-2002
Mensajes: 9
Antigüedad: 22 años, 6 meses Puntos: 0 | |
Mostrar Consulta No me visualiza las tablas con los resultados. Alguien me podria decir q esta
mal. Gracias.
$result=mysql_query("select * from restaurante");
$row = mysql_fetch_array($result);
<html>
<head>
</head>
<? while(!($row==0)) {
?>
<table width="75%" border="1">
<tr>
<td width="68%">&nbsp; </td>
<td width="32%">
<? echo $row["Nombre"]; ?>
</td>
</tr>
</table>
<? }?>
</body>
</html> |