Welcome Guest, Not a member yet? Register   Sign In
Upload images along with my news items ?
#5

[eluser]invision[/eluser]
Many thanks for the reply Phil.

Code:
function addNews(){
$now = date("Y-m-d H:i:s");
$data = array(
        'title' => $this->input->post('title'),
        'slug' => $this->input->post('slug'),
        'status' => $this->input->post('status'),
        'body' => $this->input->post('body'),
        'category_id' => '1',
        'user_id' => $_SESSION['userid'],
        'pubdate' => $now
    );
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size']    = '100';
$config['max_width']  = '1024';
$config['max_height']  = '768';

$this->load->library('upload', $config);

$data = array('upload_data' => $this->upload->data());
//$this->upload->do_upload()

$this->db->insert('news', $data);
}

I've tried to put this together from the Upload class at CI : http://ellislab.com/codeigniter/user-gui...ading.html


Messages In This Thread
Upload images along with my news items ? - by El Forum - 03-22-2010, 04:10 AM
Upload images along with my news items ? - by El Forum - 03-22-2010, 11:47 PM
Upload images along with my news items ? - by El Forum - 03-23-2010, 02:25 AM
Upload images along with my news items ? - by El Forum - 03-23-2010, 02:44 AM
Upload images along with my news items ? - by El Forum - 03-23-2010, 02:57 AM
Upload images along with my news items ? - by El Forum - 03-23-2010, 05:46 AM
Upload images along with my news items ? - by El Forum - 03-23-2010, 05:58 AM
Upload images along with my news items ? - by El Forum - 03-23-2010, 06:00 AM
Upload images along with my news items ? - by El Forum - 03-24-2010, 02:24 AM
Upload images along with my news items ? - by El Forum - 03-24-2010, 05:05 AM
Upload images along with my news items ? - by El Forum - 03-24-2010, 05:56 AM
Upload images along with my news items ? - by El Forum - 03-24-2010, 08:50 AM
Upload images along with my news items ? - by El Forum - 03-24-2010, 09:21 AM
Upload images along with my news items ? - by El Forum - 03-25-2010, 02:52 AM
Upload images along with my news items ? - by El Forum - 03-25-2010, 08:46 AM
Upload images along with my news items ? - by El Forum - 03-25-2010, 08:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB