Jump to content

Keyword search


feri_soft

Recommended Posts

To find exact matches, remove the percentage signs:
[code]

<?php

SELECT * FROM tablename WHERE (title LIKE '$keyword') OR (description LIKE '$keyword') // exact match

SELECT * FROM tablename WHERE (title LIKE '%$keyword%') OR (description LIKE '%$keyword%') // match somewhere in

SELECT * FROM tablename WHERE (title LIKE '$keyword%') OR (description LIKE '$keyword%') // exact match on "starting with"

SELECT * FROM tablename WHERE (title LIKE '%$keyword') OR (description LIKE '%$keyword') // exact match on "ending with"

?>

[/code]
Link to comment
https://forums.phpfreaks.com/topic/23987-keyword-search/#findComment-110783
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.