Hi
I have a "multiple file upload form" with hidden fields to insert new rows with the file url in my db
example
<input name="mp3file[]" type="file" class="fieldform" />
<input name="Client" type="hidden" value="<? echo "$Client"; ?>">
<input name="ID" type="hidden" value="<? echo "$ID"; ?>">
I can upload all files I want using an array.
The thing is that the hidden values only insert one row of my table even if I upload 2 or more files.
Can I make an array of my values too?
I mean... when I upload 2 or more files a row is inserted for each row too?
I don`t know exactly how to do it
Any hint?
Thank you