我有一个 PHP 网站,我在本地上传了 10 张图片。图片保存在./images
文件夹中,并重新采样到./thumbnails
文件夹中。我使用此查询从数据库中提取 7 个照片文件名。
$imgQuery = "SELECT FileName, Title, Description FROM PICTURE WHERE OwnerID='$id' LIMIT 0,7";
数据库保存PictureID
(PK),OwnerID
(UNQ,我的id是2),FileName
(存储文件名)和Title
为图片和Description
为图片。我使用这种方法将 7 个照片文件名、标题和描述传输到一个数组。但是我怎样才能从我的./thumbnails
文件夹中提取它们并将它们显示在我的 PHP 页面上呢?
if($imgResult = mysqli_query($link, $imgQuery))
{
while($imgRow = mysqli_fetch_row($imgResult))
{
$filename[] = $imgRow[0];
$title[] = $imgRow[1];
$description[] = $imgRow[2];
}
}
这是我t1
在正文中显示缩略图的地方。我想知道如何将我的数据库检索到的文件分配给这些变量。描述会根据我的名字而改变
$num = count($filename);
while($i < $num)
{
$i = 0;
print <<<photo
<body>
<form action='MyAlbum.php' method='post'>
<table>
<tr><td colspan='7' ><h2 align='center'><?php echo $name;?>'s Album</h2></td>
</tr>
<tr><td colspan='7' ><?php echo $title[$i];?></td>
</tr>
<tr><td colspan='5' ><?php echo $filename[$i]; ?></td><td colspan='2'><?php echo $description[$i];?> </td>
</tr>
<tr>
<td><?php echo $filename[0];?></td> <td><?php echo $filename[1];?></td> <td><?php echo $filename[2];?></td>
<td><?php echo $filename[3]; ?></td><td><?php echo $filename[4]; ?></td> <td><?php echo $filename[5]; ?></td>
<td><?php echo $filename[6]; ?></td>
</tr>
</table>
</form>
$i++;
</body>
</html>
photo;
}