gpt4 book ai didi

php - 全文搜索方法不起作用

转载 作者:行者123 更新时间:2023-11-30 00:16:38 25 4
gpt4 key购买 nike

我尝试使用全文功能在我的 php 脚本中构建一个搜索引擎,但没有得到任何结果。我所做的步骤:我将 2 个字段更改为全文

ALTER TABLE stack_ask ADD FULLTEXT(q_title,q_body)

然后我添加了一些数据

INSERT INTO articles (q_title,q_body) VALUES('MySQL Tutorial','DBMS stands for DataBase ...');

然后我创建了一个变量来从输入接收发布数据

$q_title=$db->real_escape_string($_POST['search_word']);

然后查询:

SELECT * FROM stack_ask WHERE MATCH (q_title,q_body) AGAINST ('$q_title');

当我尝试搜索数据库之类的内容时,它没有给出任何结果并输出以下错误:

call to amember function fetch_assoc on a non-object

有什么问题吗?

最佳答案

嗨穆罕默德·阿明,

Make sure that q_title,q_body has indexing or not. Read this article may it will be useful for you.

http://dev.mysql.com/doc/refman/5.0/en/fulltext-natural-language.html

关于php - 全文搜索方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23605105/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com