I’m fetching data with a php script from a data base and pass it to flash. The fetching works, the passing works, using the variables in flash works.
However, in the status bar of my browser it keeps saying “Transferring data from localhost…”. So, somehow the transaction never finishes. That creates a problem when I want to send new data to the database. It only says then “waiting for localhost…” and nothing happens. I tried using ob_start() and ob_end_flush() to see if there is a bug where data isn’t finished being delivered. But that showed no results. The script in itself seems to finish, that is when I test it by itself without flash it gets done and delivers all requested data. Only when I use flash it seems to keep transferring data, although all data I request is delievered. I use senAndLoad in Flash to run the script in the background and everything seems to be working fine.
Does anyone have any ideas as to why the transfer won’t finish?