What is the best way to store data gathered from a flash file, and load it into another flash file? Would xml or php work? and could it be instantaneous?
Here is a diagram of what i am trying to do…
What is the best way to store data gathered from a flash file, and
Share
XML is a data structure. PHP is a coding language.
It’s really hard to say what’s the best way to store this. It depends on the server you’re using, the expected amount of traffic you’re going to get, and how you need to display the data later on.
If you’re storing to a file, I’d say JSON or XML are good candidates.
If you expect a high volume of traffic or you need to retrieve specific subsets of records among inputted data, I’d recommend going with a SQL database (MySQL being a popular candidate)