Welcome Guest, Not a member yet? Register   Sign In
Inserting image
#3

[eluser]cerberus478[/eluser]
Hi

I think I did what you said and now I get an error saying that name and path is undefined and that Message: Undefined property: Upload::$db

This is the controller that I edited
Code:
<?php

class Upload extends CI_Controller {

function __construct()
{
  parent::__construct();
  $this->load->helper(array('form', 'url'));


}

function index()
{
  $this->load->view('upload_form', array('error' => ' ' ));
  
}

function do_upload()
{
   $config['upload_path'] = './uploads/';
  $config['allowed_types'] = 'gif|jpg|png';
  $config['max_size'] = '1000';
  $config['max_width']  = '1024';
  $config['max_height']  = '768';
  
  $this->load->library('upload', $config);
  
  $image_data = $this->upload->data();
   $insert_data = array(
                    'name' => $image_data['name'],
                    'path'=> $image_data['path'] . 'uploads/'. $image_data['name'],
                  
                     );

          $this->db->insert('upload2', $insert_data);//load array to database
        
        


  

  if ( ! $this->upload->do_upload())
  {
   $error = array('error' => $this->upload->display_errors());

   $this->load->view('upload_form', $error);
  }
  else
  {
   $data = array('upload_data' => $this->upload->data());

   $this->load->view('upload_success', $data);
  }
}
}
?>


Messages In This Thread
Inserting image - by El Forum - 07-31-2012, 04:10 AM
Inserting image - by El Forum - 07-31-2012, 06:49 AM
Inserting image - by El Forum - 07-31-2012, 02:26 PM
Inserting image - by El Forum - 07-31-2012, 03:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB