parser.php 240 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 <?php use yii\widgets\ActiveForm; ?> <?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]) ?> <?= $form->field($model, 'file')->fileInput() ?> <button>Отправить</button> <?php ActiveForm::end() ?>