Hello,
In codeigniter I am creating an application that allows the user to upload multiple files in one go, to this I am using this library, http://www.mitesdesign.com/blog/open-source/multi-upload-jquery-code-igniter
My question is if there are multiple images that have been upload how do I define the source image in the $config, so far I have done this,
$gd['image_library'] = 'gd2';
$gd['source_image'] = '';
$gd['create_thumb'] = TRUE;
$gd['maintain_ratio'] = TRUE;
$gd['width'] = 164;
$gd['height'] = 103;
$this->load->library('image_lib', $gd);
$this->image_lib->resize();
as you can see the source_image is empty as I do not know how to get all the images that the user has upload.
Can anyone suggest anything?