Download files from MYSQL database

后端 未结 2 1354
-上瘾入骨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:11

    In your download.php you make the links and exit. This means you will not go any further than your exit call.

    
    

    You need to rethink your logic in the download file. You also call

    header("Content-length: $size");
    exit;
    print $content;
    

提交回复
热议问题