Mysql
 sql >> Database >  >> RDS >> Mysql

caricamento di più immagini quantità errata durante il caricamento del file

Prima di tutto, nominerei i campi caricati separatamente. Per esempio. denominare il primo campo <input name="image_1" type="file" /> e il secondo <input name="image_2" type="file" /> . Quindi puoi scorrere il $_FILES array invece:

foreach($_FILES as $fileId => $file){
    //make sure it's a file you want (optional)
    if(!preg_match("/^image\_\d+$/",$fileId){
         continue;
    }

    //the rest of your code from the for loop
}

In secondo luogo, devi assicurarti che l'enctype del tuo modulo sia multipart/form-data .

Tutto questo aiuta?