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>