Apache サーバーを介して画像を表示しています。各画像をクリックするdownload.php?fiel=file_name.jpg
と、画像が開き、システムにダウンロードされます。
これは画像表示用のコードです
<?php
$files = glob("Image/"."*.*");
for ($i=0; $i<count($files); $i++)
{
$num = $files[$i];
echo $num."<br>";
echo '<img src="'.$num.'" alt="Here should be image" width="256" height="192" >'."<br/>";
}
?>
次のコードを使用して、イメージ(つまり、download.php ファイル) をダウンロードしました。
<?php
$file = $_GET['file'];
header("Content-type: image");
header("Content-disposition: attachment; filename= ".$file."");
readfile($file);
?>
これを達成する方法は?