Advice on simple efficient way to store web form data when no db/auth required
Posted
by ted776
on Stack Overflow
See other posts from Stack Overflow
or by ted776
Published on 2010-05-07T08:46:14Z
Indexed on
2010/05/07
8:58 UTC
Read the original article
Hit count: 251
Hi, I have a situation where I need to provide an efficient way to process and store comments submitted via a web form. I would normally use PHP and either MySQL or XML to store the data, but this is slightly different in that this web form will only be temporarily available in a closed LAN environment, and all i need to do is process the form data and store it a format which can be accessed by another application on the LAN (Adobe Director). Each request made by the Director app should pop the stack of data. I'm wondering how best to store the data for this type of situation as it's not something I would normally do. I'm thinking possibly storing the data in an XML file, but any advice would be great!
© Stack Overflow or respective owner