下面的功能可以实现文件上传无刷新代码实例如下所示:
暂时分两个文件:
文件1 test.php:
头像 |
|
user_frame.php
if($_GET[dopost]=="uploads")
{
$d=$_GET['d'];
$i=$_GET['i'];
$f=$_GET['f'];
$w=$_GET['w'];
$file=$_FILES[$f];
//$name=rand(0,500000).dechex(rand(0,10000)).".jpg";
$array=explode(".",$file[name]);
$names=time().rand(0,500000).".".$array[1];
move_uploaded_file($file['tmp_name'],"./".$names);
//调用iframe父窗口的js 函数
echo "";
}
?>
文件下载地址:
文件上传无刷新的功能
阅读(2506) | 评论(0) | 转发(1) |