我的 html 中有一个文件列表,其中已从ImageFiles/
文件名中删除了该目录。例如,文件名如下所示:
tulips.png
koala.png
jellyfish.png
现在,如果用户单击这些文件名之一,那么我想从数据库中检索文件,但在数据库中,所有文件都包含ImageFiles/
文件名开头的目录。因此,在数据库中,文件如下所示:
ImageFiles/tulips.png
ImageFiles/koala.png
ImageFiles/jellyfish.png
我的问题只是如何完成 WHERE 子句以便从数据库中检索正确的文件?例如,如果我正在寻找文件tulips.png
,我怎样才能让查询能够ImageFiles/tulips.png
从数据库中找到并且只能找到这个文件?
下面是 mysqli 查询:
$getimage = $_GET['filename'];
$imagequery = "SELECT ImageFile FROM Image WHERE (ImageFile = ?)";
if (!$imagestmt = $mysqli->prepare($imagequery)) {
// Handle errors with prepare operation here
}
// Bind parameter for statement
$imagestmt->bind_param("s", $getimage);
// Execute the statement
$imagestmt->execute();