cakephp - Array to string Error while uploading an Image -
i trying upload image using cakephp , got next error :
notice (8): array string conversion [core\cake\model\datasource\dbosource.php, line 1009]
<?php echo $this->form->create('user',array('type'=>'file')); echo $this->form->input('profile_pic', array('type'=>'file')); echo $this->form->end('submit'); ?>
anything wrong i've did ?
you study cakephp manual how form type can file ?????? :)
use
<?php echo $this->form->create('user',array('enctype'=>'multipart/form-data')); echo $this->form->input('profile_pic', array('type'=>'file')); echo $this->form->end('submit'); ?>
cakephp image-uploading
No comments:
Post a Comment