Welcome Guest, Not a member yet? Register   Sign In
Upload and insert file data in CodeIgniter
#2

[eluser]Flemming[/eluser]
print_r($data) to check what's in it first of all. Then build up a new array ready to insert into your db:
Code:
$insert = array(
'filename' => the_name_of_the_file from $data above,
'friendly_name' => $this->input->post('friendly_name')
);
then you can use the active record nice way to insert it all ...

Code:
$this->db->insert($insert);

hope that's some help?


Messages In This Thread
Upload and insert file data in CodeIgniter - by El Forum - 10-13-2009, 06:11 AM
Upload and insert file data in CodeIgniter - by El Forum - 10-13-2009, 07:42 AM
Upload and insert file data in CodeIgniter - by El Forum - 10-13-2009, 08:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB