return $this->redirect(["?id=15"]);
public function actionUpdate($id)
{
$model = new ReviewForm();
$comment = Review::findOne($id);
$computers = addComputer::findOne($id);
// если пришли post-данные
if ($model->load($this->request->post())) {
// проверяем и сохраняем эти данные
$comment->text = $model->text;
if ($comment->save(false)) {
return $this->redirect(["?id=15"]);
}
// данные не прошли валидацию
Yii::$app->session->setFlash(
'success',
'Success'
);
}
$model->setAttributes($comment->getAttributes(['name', 'email', 'text']));
return $this->render('update', compact('model'));
}
<?= Html::a('Редактировать', Url::to(['computer/update', 'id' => $comment->id])) ?>
<?= Html::a('Редактировать', Url::to(['computer/update', 'id' => $comment->id, 'cid'=>$computers['id'] ])) ?>
public function actionUpdate($id,$cid)
{
$model = new ReviewForm();
$comment = Review::findOne($id);
if ($model->load($this->request->post())) {
$comment->text = $model->text;
if ($comment->save(false)) {
return $this->redirect(["computer/", "id"=> $cid]);
}
Yii::$app->session->setFlash(
'success',
'Success'
);
}
$model->setAttributes($comment->getAttributes(['name', 'email', 'text']));
return $this->render('update', compact('model'));
}