Código PHP :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Menu jardin 3</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="description" content="" /> <meta name="author" content="rafaxplayer" /> <link href="style.css" rel="stylesheet" type="text/css" /> <style type="text/css"> *{ margin: 0; padding: 0; } body { width:740px; height:560px; font-family: segoe script,arial; text-align: center; background-color: white; } #Menu{ margin-top: 10px; } h1{ color:#4db339; font-weight:bold; font-size:35pt; } hr{ width: 40%; margin:0 auto 0 auto; } #Menu ul{ margin:20px 0 10px 0; } #footer{ margin: 0 auto 10px auto; width: 80%; height: 25px; background-color:#8f9a8d; } #footer p{color: whitesmoke;} </style> </head> <body> <?php include("Load.php"); $Query = "SELECT * FROM Menus"; $res = mysql_query($Query)or die (mysql_error()); ?> <div id="Menu"> <h1>Menú del dia</h1><p><?php ?></p> <hr /> <ul id="primeros"> <?php while ($fila= mysql_fetch_assoc($res)) { echo "<li>".$fila['Primeros']."</li>"; } ?> </ul> <hr /> <ul id="segundos"> <?php while ($fila= mysql_fetch_assoc($res)) { echo "<li>".$fila['Segundos']."</li>"; } ?> </ul> <hr /> <ul id="postres"> <?php while ($fila= mysql_fetch_assoc($res)) { echo "<li>".$fila['Postres']."</li>"; } ?> </ul> </div> <div id="footer"><p>Precio : 7,90€ inclye pan y vino de la casa </p></div> </body> </html>
Mi problema es que solo me imprime la lista del primer grupo de lis, osea las del campo 'Primeros' y no entiendo cual puede ser el problema, un saludo