You are viewing revision #2 of this wiki article.
This version may not be up to date with the latest version.
You may want to view the differences to the latest version.
Problem Statement ¶
Ok, so you have a HTML 5 file input markup on your view and you have enabled multiple
attribute to true
. You may also be using widgets based on HTML5 input like \kartik\widgets\FileInput. But when you read a file in Yii controller using CUploadedFile
(Yii1) or UploadedFile
(Yii2), you do not see a list of multiple files that you selected in your view, but only one row. Your HTML markup in your view would be something like this and you don't know why this is not working?
[html]
<input name="uploadFile" type="file" multiple="multiple">
Solution ¶
You must configure the attribute name for HTML5 file input in ARRAY FORMAT for PHP to recognize it as an array of files. So here is how you achieve this as shown below (note the square brackets in the attribute naming):
For Yii 2 ¶
echo $form->field($model, 'uploadFile[]')->fileInput(['multiple' => true]);
For Yii 1.1 ¶
echo $form->fileInput($model, 'uploadFile[]', ['multiple' => true]);
For \kartik\widgets\FileInput (Yii 2) ¶
echo $form->field($model, 'uploadFile[]')->widget(FileInput::classname(), [
'options'=>['multiple' => true]
]);
the chaining looks much better then before.
the chaining looks much better then before.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.