The Thumb generator is great. I just want to ask how its work with multiply file upload? Ive upload the files like this:
if($_FILES["picture"]["name"][1]) {
$dest = "../photo_dir/".$document_id."_photo[1].jpg";
copy($_FILES["picture"]["tmp_name"][1], $dest);
}
if($_FILES["picture"]["name"][2]) {
$dest = "../photo_dir/".$document_id."_photo[2].jpg";
copy($_FILES["picture"]["tmp_name"][2], $dest);
}
what do I need to do to make a multiply thumbs to?