<div id="MyGallery_img_url" class="dropzone"></div>
public function actionImagesUpload(){
$model = new MyGallery;
$tml_name = $_FILES['img_url']['tmp_name'];
$name = $_FILES['img_url']['name'];
move_uploaded_file($tml_name, Yii::app()->request->baseUrl . 'images/upload/' . '13' . $name);
$model->img_url = $name;
$model->save();
}
public function actionCreate() {
$model = new MyGallery;
if (isset($_POST['MyGallery'])) {
$model->attributes = $_POST['MyGallery'];
if ($model->save())
$this->redirect(array('view', 'id' => $model->id));
}