if(isset($_POST['add_magazine']))
{
$magazine_images=array();
$magazine_images=implode(",",$_FILES['images']['name']);
$path="images/magazines/";
$mag_img=array();
$mag_img=explode(",",$magazine_images);
$img_count=count($mag_img);
move_uploaded_file($_FILES['cover']['tmp_name'],$path . $_FILES['cover']['name']);
for($i=0;$i<$img_count;$i++)
{
move_uploaded_file($_FILES['images']['tmp_name'][$i],$path . $mag_img[$i]);
}
}
HTML code:
<tr>
<th valign="top">Magazine Images</th>
<td>:</td>
<td><input type="file" name="images[]" value="" multiple></td>
</tr>
I have made a php form for uploading more than 40 or 50 files at a time. When I am running this form at local server, it uploads all the files in database but when I am running this form on live server it takes too much time to upload file and it just uploads 19 or 20 files.
Why does this happen, and what is the solution for this? Is this due to server time out?