Welcome Guest, Not a member yet? Register   Sign In
How to upload file ?
#1

[eluser]mahe11[/eluser]
Hi All,
By using codeIgniter user guide it work. But when i try it in my controller then it cant work. so tell me which things i forget.



Code:
public  function savenew(){                
                
                $config['upload_path'] = base_url().'uploads/';
        $config['allowed_types'] = 'gif|jpg|png';
        $config['max_size']    = '2048';
        $config['max_width']  = '1024';
        $config['max_height']  = '768';
        
        $this->load->library('upload', $config);
    
        if ( ! $this->upload->do_upload())
        {
                   echo "error... ";
                    $data['error']= array('error' => $this->upload->display_errors());
                    }
                    else
                        {
                        echo 'file upload....';
                        $data = array('upload_data' => $this->upload->data());
                        
                        }
                
            }

Plz help me......


Messages In This Thread
How to upload file ? - by El Forum - 01-14-2011, 01:07 AM
How to upload file ? - by El Forum - 01-14-2011, 02:17 AM
How to upload file ? - by El Forum - 01-14-2011, 02:42 AM
How to upload file ? - by El Forum - 01-14-2011, 02:46 AM
How to upload file ? - by El Forum - 01-14-2011, 03:01 AM
How to upload file ? - by El Forum - 01-14-2011, 03:13 AM
How to upload file ? - by El Forum - 01-14-2011, 03:38 AM
How to upload file ? - by El Forum - 01-14-2011, 03:50 AM
How to upload file ? - by El Forum - 01-14-2011, 04:07 AM
How to upload file ? - by El Forum - 01-14-2011, 04:10 AM
How to upload file ? - by El Forum - 01-14-2011, 04:40 AM
How to upload file ? - by El Forum - 01-14-2011, 04:46 AM
How to upload file ? - by El Forum - 01-14-2011, 05:08 AM



Theme © iAndrew 2016 - Forum software by © MyBB