Answer the question
In order to leave comments, you need to log in
Updating a model in Yii?
Sorry for the stupid question, but please tell me how to update correctly using one of the validation rules?
If you do this:
$model = new Forms('edit_form');
$model->attributes = $_POST['Forms'];
if ($model->validate())
$model->save(false);
$form = User::model()->findByPk($id);
$form->name = 'name';
$user->update();
Answer the question
In order to leave comments, you need to log in
if ($model->validate())
$model->update();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question