Skip to content

Instantly share code, notes, and snippets.

@infoshahin
Created August 23, 2015 08:56
Show Gist options
  • Save infoshahin/778a4dc378bc8b982f8e to your computer and use it in GitHub Desktop.
Save infoshahin/778a4dc378bc8b982f8e to your computer and use it in GitHub Desktop.
<?php
$image_file=$_GET['filename'];
echo $image_file;
header("Content-type; application/octect-stream");
header("Content-disposition: attachment; filename=$image_file");
readfile("images/$image_file");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment