Blogger Information
Blog 7
fans 0
comment 0
visits 4692
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
文件上传----0419
李昊文叔叔的博客
Original
509 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>文件的上传</title>
</head>
<body>
	<!-- method="post" enctype ="multipart/form-data"不能修改 唯一 -->
	<form action=" <?php echo htmlspecialchars($_SERVER['PHP-SELF'])  ?>" method="post" enctype ="multipart/form-data">
		<caption align="center"><h3>文件上传</h3></caption>
		<!-- 设置表单的最大上传文件大小  type为隐藏上传 单位为B-->
		<input type="hidden" name="MAX_FILE_SIZE" value="542488">
		<!-- fieldset:fieldset 元素可将表单内的相关元素分组。<fieldset> 标签将表单内容的一部分打包,生成一组相关表单的字段。当一组表单元素放到 <fieldset> 标签内时,浏览器会以特殊方式来显示它们,它们可能有特殊的边界、3D 效果,或者甚至可创建一个子表单来处理这些元素。
		<em>表强调   
		type=file  定义输入字段和 "浏览"按钮,供文件上传。accept="image/gif" 选择上传的格式-->
		<fieldset><legend align="center">上传文件</legend>
		<p><em>选择文件:</em><input type="file" name="upload"accept="image/gif"></p>
		</fieldset>
	</form>
	
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post