博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件上传-html
阅读量:5220 次
发布时间:2019-06-14

本文共 1187 字,大约阅读时间需要 3 分钟。

<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8">
<title>文件上传</title>
</head>
<body>
<form action="./action.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="900000000" />
上传路径(填写上传路径的时候不能加双引号:例子:./ulike):<input type="text" name="filepath"><br>
上传文件大小:<input type="text" name="maxsize"><br>
shopimge:<input type="file" name="shopimg[]"><br>
shopimge:<input type="file" name="shopimg[]"><br>
shopimge:<input type="file" name="shopimg[]"><br>
<input type="submit" name="sub" value="添加商品">

</form>

</body>
</html>

action.php

<?php

require("./FileUploadsM.class.php");

/*filepath,allowtype,maxsize,israndname*/
$filepath=$_POST['filepath'];//填写上传路径的时候不能加双引号
$maxsize=$_POST['maxsize'];
$up=new FileUpload(array('israndname'=>false,'allowtype'=>array('html','txt','png','jpg','cpp','bmp'),'filepath'=>$filepath,'maxsize'=>$maxsize));
$up->uploadFile("shopimg");
echo "<pre>";
print_r($up);
print_r($_FILES);
echo "<pre>";
/* if($up->uploadFile($_FILES['shopimg'])){
echo "文件上传成功,上传后的文件名是:".$up->getNewFileName()."<br>";
}else{
echo "文件上传失败,失败的原因是:".$up->getErrorMsg().'<br>';
}*/
?>

 

转载于:https://www.cnblogs.com/jianxin-lilang/p/5555009.html

你可能感兴趣的文章
Atlas命名空间Sys.Data下控件介绍——DataColumn,DataRow和DataTable
查看>>
Java中正则表达式的使用
查看>>
算法之搜索篇
查看>>
新的开始
查看>>
java Facade模式
查看>>
NYOJ 120校园网络(有向图的强连通分量)(Kosaraju算法)
查看>>
SpringAop与AspectJ
查看>>
Leetcode 226: Invert Binary Tree
查看>>
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
关于MFC中窗口的销毁
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>