i only learnt about it through the SitePoint tech times newsletter.
its very fast though and heres some simple code:
PHP Code:
<?
$query = mysql_query("SELECT article, title FROM news WHERE MATCH (article,title) AGAINST ('$keyword')") or die(mysql_error());
while($r=mysql_fetch_array($query)) {
$title=$r["title"];
$article=$r["article"];
echo "$article | $title";
}
?>
you have to add a fulltext index (refer to redemtion's post above) on the two columns article,title or whatever your columns are called.
Bookmarks