私はPHPで新しいです。私は、LIKEを使用するのではなく、MATCH AGAINSTを使用してmysqlデータベースを検索しようとしています。このスクリプトを使用して、エラーphp mysqlでMATCH()AGAINST()を使用中に
<?php
if (isset($_GET['q'])){
error_reporting(-1);
$query = $_GET['q'];
$dbh = new mysqli($host, $user, $password, $database);
if ($dbh->connect_error) {
echo 'Unable to connect to database '. $dbh->connect_error;
} else {
if ($stmt = $dbh->prepare("SELECT index, sura, aya, text FROM bn_bengali WHERE MATCH(sura,text) AGAINST(?) "))
{
$stmt->bind_param("s", $query);
$stmt->execute();
$stmt->bind_result($index, $sura, $aya, $text);
$stmt->store_result();
printf("Number of rows: %d.\n", $stmt->num_rows);
while ($stmt->fetch()) {
echo $sura.'-'.$aya;
echo $text;
echo '<hr />';
}
} else {
echo "Prepare failed: (" . $dbh->errno . ") " . $dbh->error;
}
}
} // end isset get q
else
{
echo '<form action="" ><input type="text" name="q"><button>Search</button></form>';
}
?>
が、それはこのエラーを与えている、
Prepare failed: (1064) You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'index, sura, aya, text FROM bn_bengali WHERE MATCH(sura,text) AGAINST(?)' at line 1
どこ問題は、このスクリプトではありますか?
データベーステーブルを照合して検索したいと思います。
しかし、同じスクリプトがbn_bengaliテキストなどから
SELECTふくらはぎ、彩、テキストで正常に動作していますか?
なぜマッチしないのですか? このスクリプトのどこに問題がありますか?
IndexはSELECT 'index'、' sura'を、変更後のmysql –