Difference between #4 and #7 of
Multiple files uploader with CMultiFileUpload

Changes

Title unchanged

Multiple files uploader with CMultiFileUpload

Category unchanged

How-tos

Yii version changed

1.1

Tags changed

File upload, CMultiFileUpload

Content changed

[...]
**In your controller.**



```php

public function actionCreate()
[...]
$model->attributes = $_POST['Photo'];

$photos = CUploadedFile::getInstancesByName('
Photo[photos]');

// proceed if the images have been set
[...]

```php

<?php
$this->widget('CMultiFileUpload', array(
'model'=>$model,
'attribute'=>'photos',
'accept'=>'jpg|gif|png',
[...]
5 0
8 followers
Viewed: 281 240 times
Version: 1.1
Category: How-tos
Written by: Interboy
Last updated by: samdark
Created on: Sep 27, 2013
Last updated: 5 years ago
Update Article

Revisions

View all history