|
|
Your Ad Here How to use the plugin with CodeIgniter Controller : load->helper(array('form', 'url')); } public function index() { $this->load->view('form', array('error' => '')); } public function do_upload() { $config['upload_path'] = FCPATH.'uploads/'; $config['allowed_types'] = 'gif|jpg|png|jpeg'; $config['max_size'] = '36000'; $config['max_width'] = '10240'; $config['max_height'] = '76800'; $this->load->library('upload', $config); if ( ! $this->upload->do_upload()) { $error = array('error' => $this->upload->display_errors()); [...]
Fri, 18 Mar 2011 10:02:40 +0000
|
|