Jump to content

Download file


robert_gsfame

Recommended Posts

I used to do upload file and now i'm trying to download the file from the upload folder...can anyone tell me how to do it.

 

Let say i have folder called "upload" and there is an image called "image.jpg"

then how to create a link to download the image.jpg

 

<a href="upload/image.jpg">Download file</a>

This is wrong!, can anyone help me

Link to comment
https://forums.phpfreaks.com/topic/183684-download-file/
Share on other sites

i want to download a file that is stored inside my upload folder

 

i try this but it didn't work as file always in txt

<?php header("Content-Disposition: attachment; filename='image.jpg'");

  header("Content-length: 10000");

  header("Content-type: jpg");?>

 

 

 

which part is wrong??

Link to comment
https://forums.phpfreaks.com/topic/183684-download-file/#findComment-969517
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.