I got a front-end designer to write tons of html form for me. Is there any free tool for creating database (mysql prefered) tables from existing html forms automatically? Names and datatypes of table fields would be generated based on names and types of form elements.
views:
26answers:
1
A:
That would be quite difficult with traditional relational databases like MySQL, where you would have to define a schema for your database before being in a position to insert and manipulate data. The schema has to define all the column names, as well as their datatypes.
All this is very difficult to auto-generate from an HTML form.
Daniel Vassallo
2010-02-03 07:57:00