Home > Backend Development > PHP Tutorial > php多文件下传 swfupload

php多文件下传 swfupload

WBOY
Release: 2016-06-13 10:40:14
Original
1016 people have browsed it

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

index.php中

file_upload_limit : 10,  //配置上传个数
Copy after login

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')");	//+上传到数据库	}
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template