I used an ajax multi-upload upload 
 has been able to upload more 
$fileCount = count($_FILES["icon"]["name"]);
    for ($i = 0; $i < $fileCount; $iPP) {
      $file = $_FILES["icon"]["tmp_name"][$i];
      $dest = "../../images/admin/product/" . $_FILES["icon"]["name"][$i];
      move_uploaded_file($file, $dest);
    } it"s just that I want to process 
 the first movie 
 and 
 the second film separately 
 first order I want to update a certain number table 
 I want to write in the number table after the second round (deal with it with foreach,) 
 it"s just that I don"t know how I can catch these two tables? 
