MySQL 全文反对()

发布于 2024-07-07 17:00:25 字数 382 浏览 6 评论 0原文

我正在尝试使用 MySQL 全文创建一个搜索页面。

我有一个带有文本框的搜索页面:

< FORM NAME ="form1" METHOD ="POST" ACTION ="catalog.php?action=<?php echo $title; ?>">

我将用户的输入传递到另一个运行查询的网页 (catalog.php):

"SELECT * FROM books WHERE MATCH (title) AGAINST (???)"

我在 against() 函数中放置什么?

该参数需要从最后一页提取用户的输入。

I am trying to create a search page with MySQL fulltext.

I have a search page with a textbox:

< FORM NAME ="form1" METHOD ="POST" ACTION ="catalog.php?action=<?php echo $title; ?>">

I pass the user's input to another webpage (catalog.php) which runs the query:

"SELECT * FROM books WHERE MATCH (title) AGAINST (???)"

What do I place in the against() function?

The argument needs to extract the user's input from the last page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扛刀软妹 2024-07-14 17:00:26

根据 MySQL 手册,您将关键字放在反对函数。

$keywords = mysql_real_escape_string($_POST['name of the input box']);
mysql_query("SELECT * FROM books WHERE MATCH (title) AGAINST ('".$keywords."')");

虽然我建议使用 GET 进行搜索。 页面刷新时没有“确定您要再次发布”对话框,您可以在没有表单的情况下修改搜索条件。

According to the MySQL Manual you place the keywords in the against function.

$keywords = mysql_real_escape_string($_POST['name of the input box']);
mysql_query("SELECT * FROM books WHERE MATCH (title) AGAINST ('".$keywords."')");

Although i suggest using GET for search. No "Sure you want to post again" dialog on a page-refresh and you can modify the search criteria without the form.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文