Welcome Guest, Not a member yet? Register   Sign In
Copy data from one table and insert to another
#6

[eluser]red2034[/eluser]


I also wanted to access multiple DBS and found out how. So now that I have access to multiple DBs (default, platform) this is what I would like to do:


Code:
public function index()
    {
  $course_id = '18896';
        if ($this->session->userdata('student_login') != 1)
            redirect(base_url() . 'index.php?login', 'refresh');
        if ($this->session->userdata('student_login') == 1)
$this->db_platform = $this->CI->load->database('platform', TRUE);  
$class_status = $this->db_platform->get_where('class' , array('status' => 'not attempted'))->row_array();
     $data['status'] = 'in-progress';
            
            $this->db_platform->update('status', $data);
   redirect(base_url() . 'index.php?student/dashboard', 'refresh');
  
    }
I am trying to change the ‘status’ data to ‘in-progress’ but it is not updating…

Anybody see my error?


Messages In This Thread
Copy data from one table and insert to another - by El Forum - 02-14-2014, 01:10 PM
Copy data from one table and insert to another - by El Forum - 02-14-2014, 02:56 PM
Copy data from one table and insert to another - by El Forum - 02-14-2014, 03:05 PM
Copy data from one table and insert to another - by El Forum - 02-14-2014, 04:12 PM
Copy data from one table and insert to another - by El Forum - 02-14-2014, 07:33 PM
Copy data from one table and insert to another - by El Forum - 02-15-2014, 11:19 AM
Copy data from one table and insert to another - by El Forum - 02-15-2014, 04:22 PM
Copy data from one table and insert to another - by El Forum - 02-16-2014, 09:48 AM
Copy data from one table and insert to another - by El Forum - 02-16-2014, 01:26 PM



Theme © iAndrew 2016 - Forum software by © MyBB