php实现表单提交上传文件功能
(编辑:jimmy 日期: 2024/11/11 浏览:3 次 )
本文实例为大家分享了php实现表单提交上传文件功能的具体代码,供大家参考,具体内容如下
首先创建含表单的html文件:upload.html
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>上传文件</title> </head> <body> <form action="upload.php" method="post" enctype="multipart/form-data"> <input type="file" name="file"/> <input type="submit" value="提交"> </form> </body> </html>
再创建服务端文件:upload.php
下一篇:PHP封装的非对称加密RSA算法示例