Hi, I want to select all the records against the key word 'thoughts' I wrote the followin code. but i'm getting error!. can you help me?
[code=php]
$sqlquery="sele ct * from news where match(day,categ ory,title,artic le)against('tho ughts')";
$queryresult = mysql_query($sq lquery);
$row=mysql_fetc h_array($queryr esult);
echo $row["day"]."<br>";
echo $row["category"]."<br>";
echo $row["title"]."<br>";
echo $row["article"]."<br>";
[/code]
[code=php]
$sqlquery="sele ct * from news where match(day,categ ory,title,artic le)against('tho ughts')";
$queryresult = mysql_query($sq lquery);
$row=mysql_fetc h_array($queryr esult);
echo $row["day"]."<br>";
echo $row["category"]."<br>";
echo $row["title"]."<br>";
echo $row["article"]."<br>";
[/code]
Comment