I have a query that gets comments from a database and displays them based on what the user typed in.
PHP:
$query=mysql_query("SELECT * FROM comments WHERE MATCH (comments) AGAINST ('%$user_text%')");
while ($row=mysql_fetch_assoc($query)){
echo "<div>$row['comment']</div>";
}
This doesn't return any values. It may be that the comments column in my mysql database isn't set to FULLTEXT. i ran this script ALTER TABLE comments ADD FULLTEXT(comment); but i can't verify that the index is indeed FULLTEXT
UPDATE (after verifying how table was created):
CREATE TABLE `comments` (
`id` int(11) NOT NULL...
PRIMARY KEY (`id`), //these are the last 3 lines
FULLTEXT KEY `comments` (`comment`)
) ENGINE=MyISAM AUTO_INCREMENT=93 DEFAULT CHARSET=latin1
show create table my_tableto see the current schema setup. – Mike Purcell Feb 2 '12 at 23:50var_dump($user_text)? – Mike Purcell Feb 3 '12 at 3:19