Any body can tell me how can i give a functionality of image upload to user in his profile.with the help of existing helper classes of yii..!!!
i am stuck with this little issue with yii..sine i am new in yii development..
Posted 22 March 2011 - 04:15 AM
Posted 22 March 2011 - 05:02 AM
$file=CUploadedFile::getInstance($model,'attributeName');
$file->saveAs('my/location/'.$file->getName());
//or
$file->saveAs('my/location/myFile.'.$file->getExtensionName());
Posted 22 March 2011 - 05:22 AM
Gustavo, on 22 March 2011 - 05:02 AM, said:
$file=CUploadedFile::getInstance($model,'attributeName');
$file->saveAs('my/location/'.$file->getName());
//or
$file->saveAs('my/location/myFile.'.$file->getExtensionName());
Posted 22 March 2011 - 05:24 AM
Posted 22 March 2011 - 06:00 AM
Gustavo, on 22 March 2011 - 05:24 AM, said:
Posted 12 October 2012 - 02:33 PM