|
$config['upload_path'] = '../../upload/';
$config['allowed_types'] = 'gif|jpg|png|JPG';
$config['max_width'] = '500';
$config['max_height'] = '350';
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload())
{
return $this->upload->display_errors() ;
}
else
{
return $this->upload->data();
} |
|