How to create auto Dynamic Text Box in PHP?

extessezins

New Member
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 \[code\]<input type="text" name="TableFieldArray[]" size="40" maxlength="256">\[/code\] can be used to auto generate the number of fields needed for the insertion of the new data.Anybody can give me some suggestions?
 
Back
Top