Hi guys! 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 MySWL 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.
Please kindly give some suggestions. Thanks!