Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a form for individuals to fill out (a couple of text fields) that they then should be able to attach picture(s) or video(s) to, save and view in a gallery at a later date. I have the form, video and camera and image/video gallery features working but I need to know the best approach for saving these files together so that they can be viewed or sent together. This is way too much code to post, so if you need to see any of the code, let me know.

share|improve this question

1 Answer

Use a sqlite database. In each row have the following columns:

TextField1    |     TextField2     |      TextField3     | File path to image  |   File path to video
share|improve this answer
Thank you, thank you, thank you! Although, obviously, I am not familiar with this technology and, thus, I have a lot of learning to do! – Hollis Nov 17 '11 at 16:28
You're welcome! If you found my answer helpful, would you mind accepting the answer by clicking on the checkmark next to it? – Kurtis Nusbaum Nov 17 '11 at 18:37
Sorry it took so long! I only recently earned those privileges. :-P – Hollis Jan 30 '12 at 17:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.