原理都一样,循环接参,你打印一下它的参数就够就明白了,存储数据库,可以将图片路径之间用|或者逗号,或者json 系列化来存储:
<?phpprint_r($_FILES)//你可以打印一下它,看看它的结构
if(!empty($_FILES)){
foreach($_FILES['file']['name'] as $k=>$v){
//$_FILES["file"]都变成$_FILES["file"][$k] *** 作进行 *** 作吧
if ($_FILES['file'][$k]['error'] == 0) {
$filetype = array("jpg","JPG")
$arr = explode(".", $_FILES["file"][$k]["name"])
...//同样的代码
}
}
}
?>
<form name="" action="" method="post" enctype="multipart/form-data">
<input type="file" name="file[]" /><br />
<input type="file" name="file[]" /><br />
<input type="file" name="file[]" /><br />
<input type="file" name="file[]" /><br />
<input type="file" name="file[]" /><br />
<input type="file" name="file[]" /><br />
<input type="submit" name="a" value="提交" />
</form>
关于上传文件:
推荐使用插件Uploadify!
使用方法:http://www.uploadify.com/documentation/
下载地址:http://www.uploadify.com/download/
关于多图上传:
在客户端定义一个js变量,用于缓存每次异步上传图片路径
最后提交表达数据的时候就把这些路径集合保存到数据库即可!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)