Home  >  Article  >  Backend Development  >  php多文件下传 swfupload

php多文件下传 swfupload

WBOY
WBOYOriginal
2016-06-13 10:40:14991browse

php多文件上传 swfupload
http://bbs.php100.com/read.php?tid=25606&page=1

index.php中

file_upload_limit : 10,  //配置上传个数

upload.php中
mysql_connect("localhost","root","");mysql_select_db("upload");$file_name=mktime().$file_name;		//+设置欲上传的文件名	if ([email protected]_uploaded_file($_FILES[$upload_name]["tmp_name"], $save_path.$file_name)) {		HandleError("文件无法保存.");		exit(0);	}else{		mysql_query("insert into pic (id,name) values (NULL,'$file_name')");	//+上传到数据库	}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn