How to upload image(photo), and path entry in database with update functionality

Comparing #5 with #6

Revision #6 was created by kiran sharma kiran sharma on Dec 11, 2012, 2:59:39 PM.

duplicate lines removed

Content

[...]
{
$uploadedFile->saveAs(Yii::app()->basePath.'/../banner/'.$model->image);
}
$this->redirect(array('admin'));
}

 
if($model->save())
 
$this->redirect(array('admin'));

}

$this->render('update',array(
'model'=>$model,
));
[...]