Welcome Guest, Not a member yet? Register   Sign In
How to change Uploded File name?
#16

[eluser]Zorancho[/eluser]
I am doing it this way:
First i create a folder at the same level as the system folder, example: uploads
Then i initialize the library (in the controller) like in the user guide:
$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);
if($this->upload->do_upload('name_of_the_input_file_in_the_form'))
{
$picture = $this->upload->data();
rename('./uploads/'.$picture['file_name'], './uploads/new_name.'.$picture['file_ext']);
}
I hope this helps anyone, of course you can do more checking, but that's the beauty of the CI, it gives you pretty good basic start, so you can learn more php along the way Smile


Messages In This Thread
How to change Uploded File name? - by El Forum - 04-28-2009, 03:18 AM
How to change Uploded File name? - by El Forum - 04-28-2009, 03:26 AM
How to change Uploded File name? - by El Forum - 04-28-2009, 03:34 AM
How to change Uploded File name? - by El Forum - 04-28-2009, 03:36 AM
How to change Uploded File name? - by El Forum - 04-28-2009, 03:51 AM
How to change Uploded File name? - by El Forum - 04-28-2009, 04:03 AM
How to change Uploded File name? - by El Forum - 04-28-2009, 04:16 AM
How to change Uploded File name? - by El Forum - 04-28-2009, 05:58 AM
How to change Uploded File name? - by El Forum - 04-28-2009, 06:00 AM
How to change Uploded File name? - by El Forum - 05-13-2009, 11:47 PM
How to change Uploded File name? - by El Forum - 05-13-2009, 11:48 PM
How to change Uploded File name? - by El Forum - 05-13-2009, 11:57 PM
How to change Uploded File name? - by El Forum - 05-14-2009, 12:12 AM
How to change Uploded File name? - by El Forum - 05-14-2009, 12:14 AM
How to change Uploded File name? - by El Forum - 05-14-2009, 12:20 AM
How to change Uploded File name? - by El Forum - 06-14-2009, 09:15 PM



Theme © iAndrew 2016 - Forum software by © MyBB