Magento: Get list of all manufacturers
Here is the code to list all the manufacturers.
$_product = $this->getProduct();
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')
->setEntityTypeFilter($_product->getResource()->getTypeId())
->addFieldToFilter('attribute_code', 'manufacturer');
$attribute = $attributes->getFirstItem()->setEntity($_product->getResource());
$manufacturers = $attribute->getSource()->getAllOptions(false);
echo "<pre>"; print_r($manufacturers); echo "</pre>";