[Plain Text] 纯文本查看 复制代码
<html>
<head>
<title>file upload system</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<p align="center">
Welcome to use file uploading system
</p>
<p align="center">
<form method="post" action="upload.php" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="1048576">
<input type="file" name="myfile" size="50"><br><br>
<input type="submit" value="upload">
<input type="reset" value="reset">
</form>
</p>
</body>
</html>