ダウンロード|表示
私のプログラムでは、あらゆる種類のファイルをアップロードして、それを直接表示またはダウンロードできます (upload_and_show.php3):
00:00 GMT"); header("Cache-Control: no-cache, must-revalidate"); header(" content-type:application/octet-stream"); header("content-disposition:inline"); ;filename=$form_data");
header("content-description:php3 生成データ");
$ fd = fopen($form_data,"r");
while($string = fread($fd,200) ){
echo $string;
}
fclose($fd);
}
else { ?>