The weird thing that i am finding about fulltext searches is that it works fine except for certain keywords
the code i am using in php is this
$query = @("SELECT * FROM $dbTable WHERE MATCH(name,header,body) AGAINST ('$searchString')", $dbc)
or die("Could not alter the table <b>$dbTable!</b>");
while($row = mysql_fetch_assoc($query)){
$head = $row["header"];
$id = $row["articalID"];
print $head<br>";
}
Which works fine except when i use words such as asp or php. Even though i have data in my tables with this information. The odd thing is searching mysql works.
Any ideas or help?
Thanks in advance
Slan