search
HomeBackend DevelopmentPHP TutorialHow to save and output files using PHP MySQL_PHP Tutorial
How to save and output files using PHP MySQL_PHP TutorialJul 13, 2016 pm 05:03 PM
mysqlphpgenerallysuperiorkeepusebackandhowrightdocumentserverlocalofScriptoutputconduct

After the local file is uploaded to the server, the server script saves the file. There are generally two ways, one is as
The file is saved to a specific directory on the machine, but there are many inconveniences caused by duplicate file names. Some procedures
The program automatically changes the file name, adds the upload time to the name, etc. to ensure the uniqueness of the file name, thus losing the originality of the file
There are also many difficulties in querying specific file information through file names, which is not conducive to unified management of files; one is to use the file
Save the file to the database and use the powerful functions of the database to conveniently implement various operations on the file. This article uses the
Two methods.

This set of programs demonstrates how to upload a file from the hard disk to the server's database through a web page, and
Read the contents of the file.

Instructions for use:
There are 5 programs in total, the descriptions are as follows:
1. file.sql --- The structure of the database table used in this program [Note: the database used is test]
2. upload.php --- upload form
3. submit.php --- upload handler
4. show_info.php --- Display part of the uploaded file information
5. show_add.php --- show [download] file

////////////////////////////////////////////////////// /////////////////////
(1) file.sql ---
//Brief description
The database structure that saves the basic information of the uploaded file. Here we focus on the fields that save the file content, using the longtext type
Because the ordinary blob type can store up to 64K bytes. In addition, the default configuration of general php has a maximum upload file of 2M. If the above is
The uploaded file is very large, so don’t forget to adjust the settings of php.ini.
//File source code
create table receive(
id int NOT NULL auto_increment, #primary key, automatic accumulation
file_data longblob, #File content
file_type varchar(100), #File type
file_name varchar(255), #File name
file_size int, #File size
PRIMARY KEY(id) #Primary key
)

////////////////////////////////////////////////////// /////////////////////
(2) upload.php ---
//Brief description
In the upload interface, the user selects the file and then submits it to submit.php for processing
It is worth noting that there is a hidden value field of MAX_FILE_SIZE, which can be set by setting its VALUE
to limit the size of uploaded files.
//Program source code


File upload form



method='post'>



Select upload file
type='submit'>


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/630915.htmlTechArticleAfter the local file is uploaded to the server, the server's script saves the file. There are generally two ways, one is Save as a file to a specific directory on the machine, but there are many here...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

如何利用GitLab进行项目文档管理如何利用GitLab进行项目文档管理Oct 20, 2023 am 10:40 AM

如何利用GitLab进行项目文档管理一、背景介绍在软件开发过程中,项目文档是非常重要的资料,不仅能够帮助开发团队了解项目的需求和设计,还能提供给测试团队和客户参考。为了方便项目文档的版本控制和团队协作,我们可以利用GitLab来进行项目文档管理。GitLab是一个基于Git的版本控制系统,除了支持代码管理,还可以管理项目文档。二、GitLab环境搭建首先,我

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software