Let’s say we have a table consists of list of columns that we want to make a form of. The name of the column, the size, the type, etc…
Eg.
Name || Type || Size
role_id || select || 20
name || text || 50
desc || textarea || 500
req_type || select || 20
… || … || …
Can we create a form based on that table? Using looping?
The aim is so that if we add new column detail to the table, the form will generate automatically. Without having to go back to development page and synchronize the form.