Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/01/2014, 08:31
mktalternativa
 
Fecha de Ingreso: enero-2012
Mensajes: 224
Antigüedad: 12 años, 3 meses
Puntos: 1
Respuesta: Drop down pages

hola encontre algo que me esta ayudando un poco
http://www.desarrolloweb.com/articulos/1281.php

pero nose como poner un array de las paginas

Código PHP:

echo "<script>";    
$result mysql_query("SELECT id FROM Secciones WHERE activo='1' ORDER BY tipo ASC"); 
while(
$row mysql_fetch_array($result)) 
{
echo 
"var subsecciones_".$row[id]." =new Array('-'";

$result2 mysql_query("SELECT nombre FROM Subsecciones WHERE activo='1' and id_seccion = '$row[id]' ORDER BY nombre ASC"); 
while(
$row2 mysql_fetch_array($result2)) 
{
echo 
", '$row2[nombre]'";
}
echo 
")"