Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/03/2010, 14:56
Avatar de CHuLoSoY
CHuLoSoY
 
Fecha de Ingreso: febrero-2002
Ubicación: Ribeira (Galicia)
Mensajes: 1.900
Antigüedad: 22 años, 9 meses
Puntos: 29
Respuesta: ayuda para hacer un arbol de menus

Tal vez no sea lo ideal pero yo lo haría así:
Código PHP:
Ver original
  1. $sql="SELECT * FROM tab ORDER BY id ASC";
  2. $rs=mysql_query($sql) or die("error");
  3. while($fila=mysql_fetch_array($rs)) {
  4.  
  5. echo $fila['nombre'];
  6.      $sql2="SELECT * FROM submenu WHERE tab_id=".$fila['id']." ORDER BY id ASC";
  7.      $rs2=mysql_query($sql2) or die ("error");
  8.      while($fila2=mysql_fetch_array($rs2)) {
  9. echo $fila2['nombre'];
  10.            ............... etc
  11.      }
  12.  
  13. }
__________________
ESQUIO Dominios y Hosting
Las mejores características con los mejores precios.