The best way to describe my question is to explain my situation:
I am using yii, so any response should be oriented towards that framework.
I have a database with products and categories in a many-many relationship, so a product table, a category table, and a category_product table for the relationships between them.
I also have a user table. Users are allowed to purchase certain categories of products, so there is another many-many relationship described by the category_user table, where an existing relationship indicates that the user is allowed to purchase any product in that category.
My question is this: If I currently have the user and product, is there an easy way to determine if the user can purchase the product, meaning that there exists a relationship of the user and product to the same category. I'm having a really hard time finding an efficient or simple way to accomplish this other than just grabbing an array of the category id's related to the user and another array of the category id's related to the product and then searching for a match within those.