ファイルで提供されている画像名を表示する必要があります。言っimage.txt
てから、それらの画像をリンクとして作成します。リンクをクリックすると、別の画像のセットが表示されます。これはimagename.txt
(例: " 1.jpg.txt
") ファイルで利用できます。
やり方を教えてください。
表示画像に使用される機能:
function imageDisplay($fileName)
{
$readfile = file($fileName);
// Create a loop that will read all elements of the array and print out
// each field of the tab-delimited text file
$fh = fopen($fileName, "rb") or exit("Unable to open file!");
$count =10;
for ($k=0; $k<=$count; $k++)
{
list($imageName) = fscanf($fh,"%s");
$path = "images/";
$path = trim($path.$imageName);
?>
<body bgcolor="gray">
<img src="<? echo $path; ?>" alt="<? echo $path; ?> " vspace="5" hspace="10" />
<?php
}
fclose($fh);
}
ありがとう、ラヴィ