en mi php hago una consulta ami BD y la cual la llena exitosamente el problema es que cuando regresa ese arreglo no lo puedo leer y no encuentro el error.
php
<?php
include("../config.php");
$array;
$int=0;
//*$c=mysql_query("select precio from ingrediente where id_ing='cr01'");
$c=mysql_query("select precio from ingrediente,preparacion,platillo where preparacion.id_platillo='pl01' and platillo.id_platillo=preparacion.id_platillo and ingrediente.id_ing=preparacion.id_ing");
while($ing=mysql_fetch_array($c)){
$array[$int]=$ing[0];
$int+=1;
}
echo "precio=".$array;
?>
y mi flash8
var valor:Array=new Array();
recibeNumeros.onLoad = function (success:Boolean){
trace("tamaño : "+valor.length);//esta en 0 el tamaño de mi arreglo
trace("El arreglo es : " + recibeNumeros.precio);
valor=recibeNumeros.precio;
trace("tamaño : "+valor.length);//aqui cambia mi valor de arreglo ya tiene registros
trace(valor[0]);}
enviaNumeros.sendAndLoad("pagina", recibeNumeros, "post");
stop();
¿Cual creen que sea el problema?