I'm trying to make something similar to "related articles". This is what I have.
$query = "SELECT * FROM posts WHERE post_tags LIKE '%$post_tags%'";
I want it to 'select all from post where the post tags are similar to the current post's tags'.
Note: The tags look like this in the database: "tech, news, technology, iphone"
I looked into things like
$tags = explode(",", $post_tags );
But I'm not sure.
Use FullText search -- docs
Live demo
The query will require you to add a FULLTEXT index to your
post_tags
table column (unless you have the older MyISAM table). This query will be a lot faster than your current attempt.query to add the index
A better, faster approach
Change how you store the post-to-tag relationship in the DB. Your
posts
table should not be used to store tags because one post has many tags, but each post has only one record in the posts table. Instead, have a two other tables:tags table
post_tags table
Notice it's easy to tell that post_id #1 has the technology and hobbies tags. This will make your queries easier, and faster.
Even faster!
If you do want to store everything in the
posts
table but have even faster performance, you will need to store your tags as bit flags. For instance, if the following is true in your PHP application:Then it's easy to store tags in one field. A post that has technology and hobbies tag would have a value:
And if you wanted to search for all records with technology or hobbies, you would do: