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
Select upload file |
|
type='submit'> |

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

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
