1 Star 0 Fork 0

高泽正/Electronic document transmission system

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
upload_file.php 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
高泽正 提交于 2021-12-12 09:23 . 电子公文传输系统
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/new.css"/>
<script src="jquery-3.1.1/jquery-3.1.1.js"></script>
<script src="jquery-3.1.1/jquery-3.1.1.min.js"></script>
<title>无标题文档</title>
</head>
<style>
.fx{
font-family:"方正姚体";
font-size:30px;
margin-left:30%;
}
.tagf{
font-family:"楷体";
font-size:30px;
}
.tagz{
font-family:"楷体";
font-size:20px;
}
</style>
<body style="background-image:url(image/y5.jpg)">
<font color=red class="tagf">提示信息</font>
<hr/>
<?php
if ($_FILES["file"]["error"] > 0)
{
echo "<font color=red class='tagz'>Error: " . $_FILES["file"]["error"] . "<br /><font color=red class='tagz'>你没选择文件或文件已损坏或格式不对!</font>";
echo "<br/><br/><a class='button orange' href='javascript:history.go(-1)'>返回个人页面</a>";
return;
}
else
{
echo "<font color=red class='tagf'>上传的文件名: " . $_FILES["file"]["name"] . "</font><br />";
echo "<font color=red class='tagf'>文件类型: " . $_FILES["file"]["type"] . "</font><br />";
echo "<font color=red class='tagf'>文件大小: " . ($_FILES["file"]["size"] / 1024) . " Kb</font><br />";
}
if(preg_match("/^(text|image|audio|application)/",$_FILES["file"]["type"]))
echo "<font color=red class='tagf'>文件类型符合</font>"."<br/>";
else
{
echo "<font color=red class='tagf'>该文件的类型不是规定的类型</font>";
echo "<br/><br/><a class='button orange' href='javascript:history.go(-1)'>返回个人页面</a>";
return;
}
if (file_exists("upload/" .$_POST['send']."/". $_FILES["file"]["name"]))
{
echo "<font color=red class='tagf'>错误信息:文件已存在!</font>";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],
"upload/" .$_POST['send']."/". $_FILES["file"]["name"]);
echo "<font color=red class='tagf'>上传成功!</font>";
}
echo "<br/><br/><a class='button orange' href='javascript:history.go(-1)'>返回个人页面</a>";
?>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gao_ze_zheng/electronic-document-transmission-system.git
git@gitee.com:gao_ze_zheng/electronic-document-transmission-system.git
gao_ze_zheng
electronic-document-transmission-system
Electronic document transmission system
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385