Download files from MYSQL database

后端 未结 2 1331
-上瘾入骨i
-上瘾入骨i 2021-01-28 01:36

ok i got files uploading to my database alright. but having problems downloading files from the database, it shows as a link and when i click on the link nothing happens.

<
2条回答
  •  伪装坚强ぢ
    2021-01-28 02:14

    I scan thoroughly your code and here is the final answer.

    ";
        }
        else{
            while(list($id, $name) = mysql_fetch_array($result)){
                echo "$name
    "; } } if(isset($_GET['id'])){ $id = $_GET['id']; $query = "SELECT name, type, size, content FROM upload WHERE id = '$id'"; $result = mysql_query($query) or die('Error, query failed'); list($name, $type, $size, $content) = mysql_fetch_row($result); header("Content-Disposition: attachment; filename=\"$name\""); header("Content-type: $type"); header("Content-length: $size"); print $content; } ?>

提交回复
热议问题