php - Upload files individual from multiple file input - by only using one submit button -


first of sorry bad english. have hit point in project can't finde solution on, ask help.


first let me explain little project is:

the system big upload system customer. each file there selected need title.

enter image description here

as can see have many "chose file" because there need max number of files pr categories (this can change invidually) , title (the box beside orange upload) required if have chose file.

my problem:

click upload on each category ignoring wanna make one button push there activate upload files. easy enough, here it's come: @ host system run on max "upload size" 90mb when have multiple files @ same time, hit quick max.

this how html looks:

<form method='post' accept-charset='utf-8' enctype='multipart/form-data' >     <div class="inputs">         <label for="ump1">vælg fil</label>         <input type="text" name='titles[]'>         <!-- thumbnail -->         <div class="thumbnail" id="mp1"></div>         <!-- file -->         <input id="ump1" name='files[]' type="file">     </div>     <div class="inputs">         <label for="ump2">vælg fil</label>         <input type="text" name='titles[]'>         <!-- thumbnail -->         <div class="thumbnail" id="mp2"></div>         <!-- file -->         <input id="ump2" name='files[]' type="file">     </div>     <div class="inputs">         <label for="ump3">vælg fil</label>         <input type="text" name='titles[]'>         <!-- thumbnail -->         <div class="thumbnail" id="mp3"></div>         <!-- file -->         <input id="ump3" name='files[]' type="file">    </div>    <input type="submit" name='upload' value="upload"> </form> 

is there there can me make script or know plugin there can this?

ps: not have access php.ini


Comments