Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Save the film with mysql

2025-04-08 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

In the process of designing and building a web site, it is sometimes more convenient to save a copy to a database than to save it as a file. The combination of PHP and MySQL can easily implement the above functions. [@ more@] configure the number of databases

The difference between the fields of the text or integer type we usually use in the data database and the fields that need to be used to save the film is that the number of fields that the user needs to save is different. The MySQL database uses a specific field to hold high-volume data, which is of type BLOB.

The definition of MySQL data for BLOB is as follows: the BLOB data type is a large binary object that can hold available data. There are four types of BLOB, namely TINYBLOB,BLOB, MEDIUMBLOB and LONGBLOB, depending on the length of the maximum data they can store.

After describing the data types we need to use, we can use the following sentence to build a table of saved images.

Code: CREATE TABLE Images (PicNum int NOT NULL AUTO_INCREMENT PRIMARY KEY, Image BLOB)

Edit and upload the copy

As to how to upload documents, we will no longer discuss them here. Interested users can refer to the relevant articles in the "Internet Pottery Bar". Now, let's take a look at how to receive uploaded files and store them in the MySQL database. The specific version code is as follows, where we assume that the name of the delivery domain on the file is Picture.

Code:

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 246

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report