I have two tables in database profile_fields and profile_fields_values.
Table profile_fields has columns
- id
- fieldname
- fieldtitle
- fieldtype
- orderby
- required
- published
Table profile_field_values has columns
- id
- field_id
- user_id
- field_value
Here I have to create a dynamic profile management.
How do I show dynamic forms in Yii?
You need to use Form Builder, it has plenty of example how to construct your form using an array. It also supports sub-forms. Just follow the examples from the linked tutorial, content it's to long to be referenced here.
Update:
or another example:
A more broader example is on forum.