Skip to content

Instantly share code, notes, and snippets.

Created September 4, 2013 21:58
Show Gist options
  • Save anonymous/6443409 to your computer and use it in GitHub Desktop.
Save anonymous/6443409 to your computer and use it in GitHub Desktop.
salo
<?php
if (!empty($_GET["c"]) && file_exists("images/".$_GET["c"].".png")) {
header("Content-type: image/png");
readfile("images/".$_GET["c"].".png");
} else {
header("HTTP/1.0 404 Not Found");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment