I'm developing a two player turnbased game with flash, and i need to save data to database.
At the moment i am using AMFPHP. Works great.
Problem is i'm starting to have quite much information - different kind little things like x, y, hp, path, activeskills... etc. Every time i add something i have to code it to AS and PHP and modify DB structure.
So is there better solution to do this?
I would love to send AMF packet from flash to PHP and save it to DB. Other player could just load this AMF packet from DB ..but i guess that is not possible. Couldnt find any working solution from web.
**Ideal DB structure for me would be:
id,gameId,gameData
So how should i "compress" all data to 'gameData'?** Array, amf, string..