robert_gsfame Posted December 2, 2009 Share Posted December 2, 2009 <?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?? Quote Link to comment Share on other sites More sharing options...
cags Posted December 2, 2009 Share Posted December 2, 2009 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. Quote Link to comment Share on other sites More sharing options...
robert_gsfame Posted December 2, 2009 Author Share Posted December 2, 2009 thank you so much cags! it works!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.