Answer the question
In order to leave comments, you need to log in
How to redirect user to another page in yii2?
You need something like a redirect to another page or controller.
if ($data != NULL) {
return $this->render('company', ['data' => $data, 'user' => $user]);
} else {
//редирект на страницу профиля r=user/profile&id=$id
}
Answer the question
In order to leave comments, you need to log in
return Yii::$app->response->redirect(['user/profile', 'id' => $id]);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question