Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created March 4, 2015 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muskie9/7afcb37120e66be68a03 to your computer and use it in GitHub Desktop.
Save muskie9/7afcb37120e66be68a03 to your computer and use it in GitHub Desktop.
<?php
$image = $_GET['image'];
header("Content-disposition: attachment; filename=$image");
header('Content-type: image/jpeg');
readfile("http://site.com/path/to/$image");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment