I have a question regarding the creation of Auto Dynamic text boxes within PHP. The scenario is like this:
- I have 2 tables in a MySQL database.
- The 2 tables (students/teachers) have different number of fields
- Teachers = 8 fields / Students = 5 fields
- A page for inserting new data into the tables is created.
So now there is a need to allow the “insert” page to auto generate the number of fields found within the table to allow inserting of data instead of creating 2 different PHP pages for the website.
I think that by including array into <input type="text" name="TableFieldArray[]" size="40" maxlength="256"> can be used to auto generate the number of fields needed for the insertion of the new data.
Anybody can give me some suggestions?
adapted from example #1 on this page in the php manual:
That will give you one
<input>element for each column in the Teachers table. The input elements will be named the same as their corresponding mysql columns.