Solution for creating dynamic forms

patois

New Member
I'm having some trouble deciding which approach I should take. I want to allow users to create their own html forms by choosing different form elements (textfields, textareas, lists, ratios, etc) I guess something similar to http://wufoo.com/ but much more basic. Should I use database tables or create files?For tables I was thinking to create a table for each form element, e.g \[quote\] TEXTFIELD TABLE ID TEXTFIELD_NAME USER\[/quote\]...\[quote\] TEXTAREA TABLE ID TEXTAREA_NAME USER\[/quote\]etc for all form elementsand then just query all of them with.. \[code\]WHERE user=$user\[/code\]Or should I generate php files on the server for each form created?
 
Back
Top