首先,我想告诉你我正在使用blob.所以,我上传了一些图片,我想创建一个搜索栏,以便我可以通过我的数据库中的标签来调用它.我现在的情况如下:
我无法搜索2个字或更多.
我的数据库中有一个名为tag和kategori的字段.
在标签中我放了像zat这样的数据;散文ob ;;
它被分开; (分号).
所以,这是我的一个搜索代码:
<html>
<body>
<?php
$conn = mysql_connect("localhost", "denis", "denis");
mysql_select_db("company");
echo($_POST["tag"]);
?>
<form method="POST" >
<font color='black'>Cari gambar:</font>
<input type="text" name="tag" value=" ">
<input type="submit" name="search" value="Cari"/>
</form>
<?php
if(isset ($_POST["tag"]))
{
$sql2="select imageId from output_images where bukuId=". $_GET["id"]." and tag like '%".$_POST["tag"]."%' Order by imageId asc";
}
else
{
$sql2="select imageId from output_images where bukuId=". $_GET["id"]." Order by imageId asc limit 1";
}`enter code here`
$res2=mysql_query($sql2,$conn);
while($row2=mysql_fetch_array($res2))
{
echo("<img src='http://" . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/profile.php?image_id=". $row2["imageId"]. "' width='15%' height='30%'/>");
}
mysql_close();
//echo("ada");
mysql_close($conn);
?>
</body>
</html>
我怎么能用2个字或更多字来表达呢?
我听说有爆炸,但我不明白如何使用它.
this is my database, which use tag to find my image
最佳答案 在mysql查询中使用它:
WHERE interests REGEXP 'tag1|tag2|tag3'