Ver Mensaje Individual
  #5 (permalink)  
Antiguo 26/11/2007, 13:41
Avatar de foreverOdd
foreverOdd
 
Fecha de Ingreso: noviembre-2007
Ubicación: Caracas
Mensajes: 489
Antigüedad: 16 años, 5 meses
Puntos: 14
Re: llenar array con la consulta a la bd

intenta esto a ver:

$result = mysql_query("SELECT DepEntInvolucrada FROM CatDepentInvolucrada order by Id_CatDepentInvolucrada");

while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
echo $row[0]."<br>";
}