Here is the code to get all the products:
$allproducts = Mage::getModel(‘catalog/product’)->getCollection()
->addAttributeToSelect(‘*’);
foreach ($allproducts as $product) {
echo $product->getName() . ”
“;
}
Web Developer
Here is the code to get all the products:
$allproducts = Mage::getModel(‘catalog/product’)->getCollection()
->addAttributeToSelect(‘*’);
foreach ($allproducts as $product) {
echo $product->getName() . ”
“;
}