Go to the documentation of this file.00001 <?php
00002 if (!$_GET["gfx"])
00003 exit();
00004 $image = $_GET["gfx"];
00005 header('Content-Type: image/jpeg');
00006 header('Content-Length: '.filesize($image));
00007 readfile($image);
00008 if (is_file($image))
00009 {
00010 unlink ($image);
00011 }
00012 ?>