• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • File List
  • Globals

assessment/displaytempimage.php

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 ?>

Generated on Fri Dec 13 2013 08:00:13 for ILIAS Release_3_3_x_branch .rev 46803 by  doxygen 1.7.1