[Solved]How to redirect _form to save in other action into same ontroller

Hi.

How can I redirect my form to save in other action into the same controller.

Do you mean this?

http://www.yiiframework.com/doc-2.0/yii-widgets-activeform.html#$action-detail

The solution for me.




 <?php $form = ActiveForm::begin([

        'method' => 'post',

        'action' => ['fecha/create1'],//actionController

 ]); ?>