Jump to content

Search Bar Keywords


Go to solution Solved by Ch0cu3r,

Recommended Posts

ok so i have a search bar and when i search for keywords it doesnt get all the keywords here is how its setup

SELECT * FROM videos WHERE `tags` LIKE '%$search%' OR `name` LIKE '%$search%'

It doesn't get all the keywords that are in tags

 

for example if i search "soccer player in new york"

 

the tags are like "soccer,player,world,mls,futbol,spain,ronaldo"

 

it returns 0 videos

 

if i search "Soccer"

 

it returns 100 videos

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/283133-search-bar-keywords/
Share on other sites

  • Solution

I don't think LIKE can take multiple values to search. You have to perform like on each keyword. eg

SELECT col FROM table WHERE col LIKE '%keyword1%' 
                         OR col LIKE '%keyword2%'
                         OR col LIKE '%keyword3%' etc..
Edited by Ch0cu3r
Link to comment
https://forums.phpfreaks.com/topic/283133-search-bar-keywords/#findComment-1454692
Share on other sites

LIKE is a simple search, using AND versus OR yields different results as well.

 

If wanted a more advanced search try using full-text search in booleon mode

http://dev.mysql.com/doc/refman/5.7/en/fulltext-boolean.html

 

Somewhere here in phpfreaks is some examples and functions to help you along whichever method you decide on.

Link to comment
https://forums.phpfreaks.com/topic/283133-search-bar-keywords/#findComment-1454775
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.