$collection = Mage::getResourceModel('catalog/product_collection');
foreach ($collection as $_product):
$pro = $_product->getId();
$model = Mage::getModel('catalog/product'); //getting product model
$_product1 = $model->load($pro);
$_product1->getName();
$_product1->getDescription();
endforeach;
Magento
foreach ($collection as $_product):
$pro = $_product->getId();
$model = Mage::getModel('catalog/product'); //getting product model
$_product1 = $model->load($pro);
$_product1->getName();
$_product1->getDescription();
endforeach;
No comments:
Post a Comment