<? $dosya = getcwd()."/example.txt"; $fp = fopen($dosya, 'r'); $str = fread($fp, filesize($dosya)); fclose($fp); echo $str; ?>
<? $file = getcwd()."/deneme.gif"; $fp = fopen($file, 'rb'); $str = fread($fp, filesize($file)); fclose($fp); header("Content-Type: image/gif"); header('Content-Disposition: attachment; filename="example.gif"'); echo $str; exit(); ?>