Search results

  1. P

    JPEG file download via PHP in IE

    Thanks for that, although I'd rather users didn't have to deal with unzipping - it may solve my main problem ... I'll give it a shot.
  2. P

    JPEG file download via PHP in IE

    I am trying to download a JPG file through a php page. The code is pretty straight forward, it obtains the filename from the query string, reads the file and outputs to the browser. Here is the code: <?php $filename = $_GET["file"]; $bytes = filesize("PATH_TO_FOLDER/$filename")...
Back
Top