Hello All. I am looking for a way to save an object to the server for later use.
I have an object in my app that is basically a collection of multi-dimentional arrays.
These arrays are saving sessions data, as each ‘session’ is different for each user.
I would like to be able to save this object to the server, so that it can be loaded back into flash later. I dont want to use shared objects becuase it needs to be accessible anywhere.
i dont necessarily want to parse out the object to an xml or because it will have to be converted back into the object, and the arrays are pretty complicated.
is there any way to save the object as a binary file on the server, then reload it? Or is there another way to do this? Basically im looking for a shared object functionality, only the shared object is on the server not local.
Thanks for any help or insight.
Q
PS, i understand saving text and xml to a file using php, but im looking for a more direct method, like binary.