Hi i want to get all the product collection based on a multiselect attribute. i wrote the following query but it is giving me all the products not getting filtered.
$collection = Mage::getModel('catalog/product')
->getCollection()
->addAttributeToSelect('*')
->addAttributeToFilter('author_name', 45)
foreach($collection as $product){
echo $product->getName().'<br />';
}
can any one give me the query how to fetch collection filtered by multiselect attribute value.