Jump to content

order by relevancy ?


ohdang888

Recommended Posts

<?php
$terms = $_POST['search'];
$query = mysql_query("SELECT * FROM `table` WHERE `column` LIKE '$terms'");
while($row = mysql_fetch_array($query)){
   echo "$row['column']";
   echo "<br />";
}
?>

 

Search Term: egg

Results:

  • eggnogg
  • eggs
  • eggmcmuffin
  • egg

Link to comment
https://forums.phpfreaks.com/topic/98735-order-by-relevancy/#findComment-505265
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.