Home Backend Development PHP Tutorial php实现文件下传到指定文件夹,文件路径或名字存入数据库,怎么实现

php实现文件下传到指定文件夹,文件路径或名字存入数据库,怎么实现

Jun 13, 2016 pm 01:09 PM
file mysql name quot

php实现文件上传到指定文件夹,文件路径或名字存入数据库,如何实现啊
有高手吗?帮个忙吧。

------解决方案--------------------

HTML code

Copy after login
……

------解决方案--------------------
补全数据库操作:
PHP code
<?php if(is_uploaded_file($_FILES['img']['tmp_name'])){
    if(move_uploaded_file($_FILES['img']['tmp_name'], $target_name)){
        //这就算上传成功了,插入数据库
        if (!$link = mysql_connect('mysql_host', 'mysql_user', 'mysql_password')) {
            echo 'Could not connect to mysql';
            exit;
        }

        if (!mysql_select_db('mysql_dbname', $link)) {
            echo 'Could not select database';
            exit;
        }

        $sql    = 'insert into table_name(id, img_path) values(img_id, $target_name)';
        $result = mysql_query($sql, $link);

        if (!$result) {
            echo "DB Error, could not create table the database\n";
            echo 'MySQL Error: ' . mysql_error();
            exit;
        }

        mysql_free_result($result);
    }
    else{
        echo "上传失败";
    }
}
?>
<br><font color="#e78608">------解决方案--------------------</font><br>我也来个<br>
Copy after login
PHP code

define(UPLOAD_ROOT,'你的上传文件夹路径');

function fake_random_name($string,$key){
   #伪代码 随便根据用户名和上传时间生成一个伪随机的文件名作为上传以后的用户名 
   #但解码的条件是可以根据文件名判断出文件所有者的用户名和上传时间
   #需要从数据库取出用户的密匙 才能进行解密 密匙是用户名的前5个字符
   #具体加密解密的代码实现 请参照PHP标准扩展库 Mcrypt扩展下的N种方法 
   return $fake_random_name;
}
if(!is_writbale(UPLOAD_ROOT)){
  die('you need chown the dir for your uploading file,make it writable~');
}else{
  move_uploaded_file($_FILES['POST过来的表单名']['tmp_name'];
  /*
  * 这个方法会自动调用is_upload_file()方法 检测是否是合法的http rfc1867协议上传的文件
  * 当然了 你也可以限制是否是你需要的合法文件类型 $_FILE[$_POST[name]][type] 比如是否是pdf img文件 都可以
 */
  $dbh = new mysqli('localhost','root','sa','your_db_name');#生成中可以include进来 DSN放到根目录以外去 保护连接文件 

  $sec_key = substr($_SESSION['loginname'],0,5);
  #密匙

  $file_name = fake_random_name($_FILES['POST过来的表单名']['tmp_name'],$sec_key);
  #加密后的名字

  $q_str = "insert into tb(owner,location)values($_SEESION['loginname'],UPLOAD_ROOT.DIRECTORYSLASH.$file_name))";/SQL

  $dbh->query($q_str);

  if($dbh->num_rows()==1) echo "上传成功,已经插入数据库文件细节(加密)";
}
<br><font color="#e78608">------解决方案--------------------</font><br>设置好文件保存的路径,把上次的文件通过move_uploaded_file这个函数上传,再命名上传的文件名插入到数据库
<br><font color="#e78608">------解决方案--------------------</font><br>学习并接分 <div class="clear">
                 
              
              
        
            </div>
Copy after login
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles