Jump to content

Search Query in MYSQL


stimlict

Recommended Posts

i need a search script in which someone searches through my tables. I have 3 main tables, (news, articles, and famous diamonds) and in the drop down they need to select from which table. Then it has to beable to search... current example at the top i have is at

http://www.dakov.com

but the code gives me error

 

 

each table has different name for the table, title, and body for example in one table title column is title and in another its titlearticle, and third its namegia

 

i cant figure out how to query it from various tables from the database and display the results nicely

 

[php:1:10b1238074]<?php

$sql = \"

SELECT *,

MATCH($title, $body) AGAINST(\'$searchresult\') AS score

FROM $usertable

WHERE MATCH($title, $body) AGAINST(\'$searchresult\')

ORDER BY score DESC

\";

$rest = MySQL_query($sql);

?>

 

SCORETITLEID#

{$sql2[\'score\']}\";

echo \"{$sql2[\'title\']}\";

echo \"{$sql2[\'id\']}\";

}

echo \"\";

 

 

 

?>[/php:1:10b1238074]

 

Thanks guys.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.