代码拉取完成,页面将自动刷新
<!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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。