Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/09/2002, 14:23
crash_soft
 
Fecha de Ingreso: agosto-2002
Mensajes: 9
Antigüedad: 21 años, 7 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%">  </td>
<td width="32%">
<? echo $row["Nombre"]; ?>
</td>
</tr>
</table>

<? }?>
</body>

</html>