爱程序网

php上传文件常见问题(基础)

来源: 阅读:

既然上一篇文章《php上传中文文件文件名乱码问题》遇到了文件上传的问题,干脆把php上传文件时经常碰到的几个问题总结一下吧,以后用到时不用再去找了。


1.先做个最简单的上传文件

 1 <html> 2 <head> 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 4 </head> 5 <body> 6  7 <form action="upload_file.php" method="post" 8 enctype="multipart/form-data"> 9 <label for="file">Filename:</label>10 <input type="file" name="file" id="file" /> 11 <br />12 <input type="submit" name="submit" value="Submit" />13 </form>14 15 </body>16 </html>

相关文章列表: