i have a mySQL table where people add their names and their interests. I want to use some sort of word match that goes through and finds either a 100% match or a close match. Ive heard of the levenshtein distance but have no clue how to make it cycle through my table.

    $input = $_POST["interest"];
    $result = mysql_query("SELECT interest_desc FROM interests");

Done some googling and got to this point

   function closest($seed, $haystack){
   $shortest = -1;
     foreach ($haystack as $word){
      $lev = levenshtein($seed, $word);
       if ($lev == 0) {
           $closest = $word; $shortest = 0; break;
       }
       if ($lev <= $shortest || $shortest < 0) {
       $closest  = $word; $shortest = $lev;
       }
}
return $closest;
}
$array = mysql_fetch_row($result);
$closestmatch = closest($input,$array);
echo $closetmatch;
link|improve this question

40% accept rate
Are you sure you definitely want to do this in PHP? If you want to search for matches (or close matches) this is something that's correctly handled on the DB end. Please let us know. – rdlowrey Dec 6 '11 at 2:03
as @rdlowery says, you're probably better off passing the responsibility to MySQL - have a read of stackoverflow.com/questions/634995/… and artfulsoftware.com/infotree/queries.php#552 for a solution... – HorusKol Dec 6 '11 at 2:14
feedback

2 Answers

If you want to search for matches (or close matches) it's best to handle this at the MySQL database.

You might think this is your best option:

$input = mysql_real_escape_string($_POST["interest"]);
$query = "SELECT interest_desc FROM interest WHERE interest_desc LIKE '%$input%'";
$result = mysql_query($query);

It's not.

In MySQL the simplest available method is to use a MyISAM table with a FULLTEXT index on the column you'd like to search. First, make sure you have a fulltext index on the interest column:

ALTER TABLE interest ADD FULLTEXT(index_desc);

Once you've got that handled ...

$input = mysql_real_escape_string($_POST["interest"]);
$query = "SELECT interest_desc, MATCH(interest_desc) AGAINST('$input') AS score
  FROM interests
  WHERE MATCH(interest_desc) AGAINST('$input')
  ORDER BY score DESC
  LIMIT 10
";

$result = mysql_query($query);

This will return the 10 best matches to your search ordered by match score.

CAVEAT

There is a great deal more to this topic and this is just one way to handle it easily with MySQL. BUT, it should be enough to get you started.

link|improve this answer
Hi rdlowrey, just trying to implement your code as an example. when i echo out result i get - Resource id #4. You wouldn't know what this means? – user1064660 Dec 12 '11 at 3:01
Yes, I do: mysql_query() returns a mysql resource. This is the correct behavior. If you want to access the result resource you need to use one of the accompanying mysql functions that handle this. You can find examples of this on the linked PHP docs page earlier in this comment. Specifically, look at Example #2 -- it addresses your question directly. – rdlowrey Dec 12 '11 at 3:37
$input = mysql_real_escape_string($_POST["interest"]); $query1 = "SELECT name,interest_desc,date, MATCH(interest_desc) AGAINST('$input') AS score FROM interests WHERE MATCH(interest_desc) AGAINST('$input') ORDER BY score DESC LIMIT 10 "; $result = mysql_query($query1) or die(mysql_error()); while ($row = mysql_fetch_assoc($result)) { echo $row['name']; echo $row['interest_desc']; echo $row['date']; } – user1064660 Dec 13 '11 at 21:06
Thanks for your response, this still retrieves resource id# 4, i want to retrieve the entry in the name row which has the closest match to interest_desc :/ – user1064660 Dec 13 '11 at 21:06
It's hard to tell -- comments aren't the best place to put code. Try posting this new problem in an actual question. Either myself or someone else will be able to answer it much better in that format. – rdlowrey Dec 13 '11 at 21:22
show 2 more comments
feedback

Try this:

$input = mysql_real_escape_string($_POST["interest"]);
$query = "SELECT interest_desc FROM interests";

$matches = array();
$result = mysql_query($query);
while($row = mysql_fetch_array($result))
{
   if (levenshtein($input,$row['interest_desc']) < 4) /* 4 how close you want the matching */
   {
      array_push($matches, array('interest' => $row['interest_desc'])); /* add only the matches to $matches array*/
   }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.