Welcome Guest, Not a member yet? Register   Sign In
How to get file name to be inserted to database ?
#1

[eluser]dimasVS[/eluser]
Hi all,,
I want to know, how to get the name of file that had been encrypted ???
I'll use that name to be inserted into database.

this is my script :

function do_upload(){
$n = rand(0,100000);
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$config['encrypt_name'] = "$n";
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload())
{
$error = array('error' => $this->upload->display_errors());

$this->load->view('admin/employeeAdd', $error);
}
else
{
$data = array('upload_data' => $this->upload->data());
echo "Register Successfull<br />";
echo anchor(base_url().'index.php/admin/employee', 'Back');
}
}

how to get the value of $config['encrypt_name'] or $config['file_name'] ?

and how to throw it to models ?

thanks so much


Messages In This Thread
How to get file name to be inserted to database ? - by El Forum - 02-14-2010, 10:26 AM
How to get file name to be inserted to database ? - by El Forum - 02-14-2010, 10:56 AM
How to get file name to be inserted to database ? - by El Forum - 02-14-2010, 06:22 PM
How to get file name to be inserted to database ? - by El Forum - 02-14-2010, 06:35 PM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 07:19 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 07:27 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 07:30 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 07:32 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 08:34 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 08:40 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 08:43 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 09:17 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 09:21 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 09:35 AM
How to get file name to be inserted to database ? - by El Forum - 02-15-2010, 09:41 AM



Theme © iAndrew 2016 - Forum software by © MyBB