15Nov/110
Magento get all products
Here is an easy way to return all the products from a magento store.
$collection = Mage::getModel('catalog/product')
->getCollection()
->addAttributeToSelect('*');
foreach ($collection as $product) {
echo $product->getName() . "<br />";
}