Home > php教程 > php手册 > PHP实现上传文件并存进数据库的方法

PHP实现上传文件并存进数据库的方法

WBOY
Release: 2016-06-06 19:51:56
Original
921 people have browsed it

这篇文章主要介绍了PHP实现上传文件并存进数据库的方法,涉及php文件上传所涉及的文件与表单操作及数据库操作相关技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了PHP实现上传文件并存进数据库的方法。分享给大家供大家参考。具体如下:

show_add.php文件如下:

show_info.php文件如下:

name; //$size=$row->size; $name = mysql_result($result,0,"file_name"); $size = mysql_result($result,0,"file_size"); mysql_close($conn); echo "


上传的文件的信息:"; echo "
The file's name - $name"; echo "
The file's size - $size"; echo "
附件"; ?>

submit.php文件如下:

显示上传文件信息"; } else { echo "你没有上传任何文件"; } ?>

upload.php文件如下:



文件上传表单
选择上传文件

希望本文所述对大家的PHP程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template