Heim >Backend-Entwicklung >PHP-Tutorial > php多文件下传 swfupload

php多文件下传 swfupload

WBOY
WBOYOriginal
2016-06-13 13:20:451004Durchsuche

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 (!@move_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')");	//+上传到数据库
	}
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn