Jump to content

Search Bar Keywords


ecabrera

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

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

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.