For the following database:
TABLES:
user: [id,username]
project: [id,name]
project_user_assignment: [user_id,project_id,role]
When a new project is being created I’d like to show a dropdown with the available users to manage the project and when saving it insert into project_user_assignment the row
[user_id,project_id,‘manager’]
I’m starter with yii and don’t know where (class,method) I must do the insert and how to return an error if in the moment of the insert the query fails
To display a drop down list in the you can use the foliowing code:
to update the corresponding field of the project_user_assignment model use the following:
and finally in the controller you just save the model.