Jump to content

file downloaded can't be read !!


robert_gsfame

Recommended Posts

<?php

$fileName = 'mypic.jpg';

$mimeType = 'image/jpeg';

header('content-disposition: attachment; filename=' . $fileName);

header('content-type: ' . $mimeType);

header('content-length: ' . filesize($fileName));

readfile($fileName);

?>

 

i tried to download the file called "mypic.jpg" which is stored inside folder called "myfolder"... i use the code written above, n i can download the file but once open nothing was shown up!....

 

What's wrong?? path?? can anyone help me with this code??

Link to comment
Share on other sites

Well assuming myfolder is stored within your root directory, you likely want to be using...

 

readfile("myfolder/{$fileName}");

 

You may also wish to try opening the file in a text editor, there is likely a PHP error message included at the start of the file.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.