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 need MySQL Schema for form generation system, I have created form designer but i need to store it in MySQL.

This system can do following

  • Create your own form
  • Add or remove as much fields as you want
  • Form will connect to a MySQL Table which is going to store form submission data

How it can be done, plz help me

share|improve this question

1 Answer

Try using the Entity-attribute-value model (EAV).

Example table for form data:

  • ID
  • Name
  • Value

So for a form with 5 fields, each form would have 5 rows. Name would be the fieldname, value the filled in value.

share|improve this answer
Thanks Konerak, could you plz show me the relationship between tables which is going to store form submission. Do you have any other resource link on this topic – Saquib Jun 30 '11 at 9:34

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.