写一段存储文件的html网页
时间: 2024-05-12 09:03:09 浏览: 97
<!DOCTYPE html>
<html>
<head>
<title>文件存储</title>
</head>
<body>
<h1>文件存储</h1>
<form action="store_file.php" method="post" enctype="multipart/form-data">
<label for="file">选择文件:</label>
<input type="file" name="file" id="file"><br><br>
<input type="submit" name="submit" value="上传">
</form>
</body>
</html>
注:以上是一个简单的HTML表单,用于上传文件。在提交表单时,将文件传递到store_file.php页面进行处理和存储。
阅读全文