我正在尝试使用上传多张照片
<input type='file'>
与输入元素同名,例如,
<?php
$remainGal = $maxGallery-$totalGallery;
if($remainGal>0){
?>
<div class="businessSPGItems">
<form name="addBusinessGallery" method="post" action="businessservices.php#messageGallery" enctype="multipart/form-data">
<input type="hidden" name="businessID" value="<?php echo $businessID;?>" />
<?php
for($i=0; $i<$remainGal; $i++){
?>
<input type="file" name="filePhotos[]" style="margin-top:5px;" tabindex="<?php echo $i+5; ?>" /><br />
<?php
}
?>
<input type="submit" name="btnAddGallery" value="Add" style="margin-top:10px;" tabindex="<?php echo $i+5; ?>" />
</form>
</div>
<?php
}
?>
但问题是当我计算文件元素的总数时,它总是显示 5... 即,
<?php
$photos = $_FILES["filePhotos"];
echo count($photos);
?>
所以我一次不能上传超过5张照片....我不知道我在做正确的方法..请帮忙,谢谢...