i am having this hard time figuring what is needed to do, i am using URLVariables to send/recieve values between flash and PHP
Sorun i iç içe diziler flaşlı (bir dizi içinde dizi) erişemiyor olduğunu
heres bir örnek:
$dgresult = array("total" => $results); echo http_build_query($dgresult,"flf_");
in flash, all i need to do is to use: var variables:URLVariables = new URLVariables(e.target.data);
then i can access it with : variables.total
Sorun şimdi ben diziler yuvalanmış durumdur:
$dgresult = array("total" => $results); array_push($dgresult,$another_array); http_build_query($dgresult,"flf_");
ben hala variables.total erişebilirsiniz
but what about anything that has flf_ ? how is that possible?