Can i get data that i got from controller, and then send it to another controller (in the same folder) in Yii2?
this is my SiteController:
public function actionIndex()
{
...
$data = Yii::$app->request->post();
$reg_res = $data['ColoringForm']['region'];
...
i want to send $reg_res to my DataController:
public function actionShowdata()
{
$reg_res ??
how can i do this?