转自http://www.cnblogs.com/lazycat-cz/p/4113037.html
安全性能---水平不够 ╮(╯_╰)╭
文件上传--->就是将本地的文件上传到服务器上。(HTTP协议有待学习)首先要在本地选择上传的文件,上传到服务器后,服务端又要做一些处理,为此客户端和服务端均要做一些设置
(客户端)文件上传最基本的方法是通过form表单进行POST传递文件,先贴代码。
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <label <span>for</span>="file">选择文件:</label> <input type="file" name="uploadFile" id="file" /> <br /><br /><input type="submit" name="submit" value="上传" /> </form> </body> </html>