multiple images upload save names to mysql (array)

See all posts See thread Reply

Re: multiple images upload save names to mysql (array) new!
by colin, 16 years, 1 month ago
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