Jump to content

mySQL Search Function


keepitcoder

Recommended Posts

So I have a basic search form that goes through and does a mySQL like '%$sanitizedInput%' to column in the table.

 

The problem I have is that if I have two rows, one with a value "green" and the second "blue", and I do a search for "green", it shows the green result, if I do a search for "blue", it shows the blue result, but if i do a search for "green blue" it returns no results.

 

Any ideas on how to fix this?

Link to comment
Share on other sites

Are you trying to search for any row that matches ANY of the search terms, instead of ALL of them?

 

If so, explode your search query and modify your SQL to include all of the possibilities.

 

<?php

$searchterm = "red blue green";
$explode = explode(" ", $searchterm);

$sql = "SELECT * FROM `table` WHERE `column` LIKE '%{$explode[0]}%'";

for ($i = 1; $i < count($explode); $i ++){
     $sql .= " OR `column` LIKE '%{$explode[$i]}%'";
}

$query = mysql_query($sql);

?>

 

Did I understand your question correctly?

 

Theo

Link to comment
Share on other sites

Are you trying to search for any row that matches ANY of the search terms, instead of ALL of them?

 

If so, explode your search query and modify your SQL to include all of the possibilities.

 

<?php

$searchterm = "red blue green";
$explode = explode(" ", $searchterm);

$sql = "SELECT * FROM `table` WHERE `column` LIKE '%{$explode[0]}%'";

for ($i = 1; $i < count($explode); $i ++){
     $sql .= " OR `column` LIKE '%{$explode[$i]}%'";
}

$query = mysql_query($sql);

?>

 

Did I understand your question correctly?

 

Theo

That can be simplified and made a bit cleaner.

 

$searchterm = "red blue green";
$sql = "SELECT * FROM `table` WHERE `column` LIKE '%" . str_replace(' ', "%' OR `column` LIKE '%", $searchterm) . "%'";

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.