Skip to content

Instantly share code, notes, and snippets.

@cccaldas
Created September 3, 2012 12:28
Show Gist options
  • Save cccaldas/3608976 to your computer and use it in GitHub Desktop.
Save cccaldas/3608976 to your computer and use it in GitHub Desktop.
<?php
$filename = $_GET['url'];
$file = file_get_contents($_GET["url"]);
header('Content-Type: image/jpeg');
echo $file;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment