I am to make a website where I would like to create all the DVD's, I am in possession of. Furthermore, I would like to place the movies into categories. I got these tables.
categories: id - title
movies: id - category_ref - etc......
Imagine that I have created several categories: (Action - ID: 1, Comedy - ID: 2)
When I create a movie in my adminpanel, I'll have the opportunity of choosing more categories through checkboxes. For instance, I could choose Action and Comedy for Spiderman.
The row for the move will be like this:
ID: 1 - category_ref: 1/2 (<- that meaning Action/Comedy)
So, on the frontpage - I would like Spiderman to be shown both under Action and Comedy.
I thought, I could use IN to get the movies under the right categories, but it doesn't work as desired:
"SELECT id, movie_title FROM film WHERE $catID IN((REPLACE(category_ref, '/', ','))"
The question might appear complicated, but it's not.
