[eluser]generalsalt[/eluser]
Have a two fields to upload files. In my controller I have:
Code:
$config['upload_path'] = './pics';
This field send images to the 'pics' folder.
Right below this field I have another, I'd (ideally) like to have CI send this to a folder called 'thumbnails'.
Code:
$config['upload_path'] = './thumbnails';
My question is, how do you specify–per field, what upload path to take? Everything is now is going to 'pics'.