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

How to create upload script by php

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly shows you "php how to create upload script", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "how to create upload script php" this article.

Create an upload script

The "upload_file.php" file contains the code to upload the file:

By using PHP's global array $_ FILES, you can upload files from the client computer to the remote server.

The first parameter is the input name of the form, and the second subscript can be "name", "type", "size", "tmp_name", or "error". It's like this:

$_ FILES ["file"] ["name"]-name of the file being uploaded

$_ FILES ["file"] ["type"]-the type of file being uploaded

$_ FILES ["file"] ["size"]-the size of the uploaded file in bytes

$_ FILES ["file"] ["tmp_name"]-name of the temporary copy of the file stored on the server

$_ FILES ["file"] ["error"]-error code caused by file upload

This is a very simple way to upload files. For security reasons, you should increase restrictions on which users have the right to upload files.

The above is all the content of the article "how to create an upload script in php". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

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: 0

*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

Development

Wechat

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

12
Report