dataroot/groups/$groupid/$image"; $filetype = "image/jpeg"; } else { $pathname = "$CFG->dirroot/pix/g/f1.png"; $filetype = "image/png"; } $lastmodified = filemtime($pathname); if (file_exists($pathname)) { header("Last-Modified: " . gmdate("D, d M Y H:i:s", $lastmodified) . " GMT"); header("Expires: " . gmdate("D, d M Y H:i:s", time() + $lifetime) . " GMT"); header("Cache-control: max_age = $lifetime"); // a day header("Pragma: "); header("Content-disposition: inline; filename=$image"); header("Content-length: ".filesize($pathname)); header("Content-type: $filetype"); readfile("$pathname"); } exit; ?>