class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
This is a PHP issue, not a class issue. Please read the doc!
This array $uploaded is only used to feed the uploaded files to the class. You need to create a new array to store the filenames as you loop through the array $uploaded. For each upload, store $handle->file_dst_name into a new array and then, when you create your query, loop through this array.Reply
This array $uploaded is only used to feed the uploaded files to the class. You need to create a new array to store the filenames as you loop through the array $uploaded. For each upload, store $handle->file_dst_name into a new array and then, when you create your query, loop through this array.