我正在尝试在充满图像的页面中进行图像搜索。
无论我搜索什么,它总是返回数据库中带有标签信息的所有图像。
我这样做是为了当有人在搜索框中输入文本时,页面被重定向到:
ob_start();
$input = abs($_GET['input']);
$query = "SELECT * FROM `photo`.`photo` WHERE `tags` LIKE '%$input'";
$result = mysql_query($query);
$data = mysql_fetch_array($result) or die (mysql_error());
$rows = mysql_num_rows($result);
$image = $data['image'];
if ($rows==0) {
echo 'no results found';
} else {
$jpgimage = imagecreatefromstring($image);
$image_width = imagesx($jpgimage);
$image_height = imagesy($jpgimage);
$new_size = ($image_width + $image_height)/($image_width*($image_height/45));
$new_width = $image_width * $new_size;
$new_height = $image_height * $new_size;
$new_image = imagecreatetruecolor($new_width, $new_height);
imagecopyresized($new_image, $jpgimage, 0, 0, 0, 0, $new_width, $new_height, $image_width, $image_height);
$imagearray = imagejpeg($new_image, null);
header('Content-type: image/jpeg');
echo $imagearray;
}
照片存储为 BLOBS,所以在这里我将它们转换为 jpeg 并调整它们的大小。
其中大部分只是重新调整图像大小,但我不知道为什么我的 mysql 查询行中的 LIKE 部分不起作用。它总是给我所有带有标签的图片的图片。