Possible Ideas:
1. compare the structure of an associative array in Flash to one in PHP.
Sent the Flash array over to PHP as a string (if this can be done), and
process the string into the correct PHP structure. Serialize the processed
array and place it into MySQL. This, of course, is a "some way" I was
talking about.
2. look into using AMFPHP and see if you can send your data as a two-way
binary format that can be used with MySQL
3. convert back and forth using XML.
4. in PHP you may have to write scripts using regular expressions to convert
associative arrays from Flash to PHP and vice versa, as the syntax is
different for the arrays.
5. you may be looking at some serious scratching-the-head time
[quoted text, click to view] "Alex" <ask@me.com> wrote in message
news:dfs921$8o7$1@forums.macromedia.com...
>
> "dParser" <rhoeper@earthlink.net> ha scritto nel messaggio
> news:dfqmij$pqh$1@forums.macromedia.com...
> > If you are exporting associative arrays to PHP in some way, you might
try
> > serializing them in PHP and then placing them in MySQL as a string.
When
> > it
> > comes time to get the data out of MySQL, unserialize the string, process
> > it
> > in some way and send it back to Flash (perhaps as XML).
> >
> > The "some way" you use in PHP will be entirely up to your skill level.
> >
> > Richard
>
> Thanks Richard. I think that the hardest thing is right to export the
> associative arrays to PHP. How could I do that?
>
>