tags:

views:

44

answers:

3

I am trying to set up a search feature on my site that will only return exact matches to keyword entered by the user. So if the user searches "dog" I don't want an article titled "Doggy Style" to appear in the search results (just an example I don't really have an article by that name). This of course does exactly that:

SELECT * FROM articles WHERE article_title LIKE '%$searchQuery%'

$searchQuery here is a PHP variable taken from the user's input form. So is there any way to return only exact matches?

A: 

For exact matches you can do:

SELECT * FROM articles WHERE article_title = '$searchQuery'

In MySql nonbinary string comparisons are case insensitive by default.

codaddict
A: 
SELECT * FROM articles WHERE article_title = '$searchQuery'
Kevin Crowell
+1  A: 
SELECT * FROM articles WHERE article_title = '$searchQuery'

would return an exact match. Notice the change from 'like' to '=' and notice the % signs have been removed.

Also be sure never to use direct input from a user form as input to search your MySQL database as it is not safe.

Steve Obbayi
Duh, I feel stupid for not thinking of this myself. Thanks!
Nadia