All,
If I have a loop to get information back from the database in PHP, like for example:
$qry = "Select * from memory";
$result = mysql_query($qry);
while($resultset = mysql_fetch_array($result)){
echo $resultset['name']."<br>";
}
I know that I can send a string back to AS2 and read it but I’m not sure how to work with arrays, do I have to save everything to an array and pass the array to AS2 and then have a function in AS2 to output all the elements of the array to the dynamic text box? Anyone have any examples of how this could work??
Thanks for all the help in advance!