<?php $prod_sku = "Product_Sku"; $ProductId = Mage::getModel('catalog/product') ->getIdBySku(trim($prod_sku)); // Initialiazation of the product model $products = Mage::getModel('catalog/product'); // Load specific product $products ->load($ProductId); print_r($products->getData()); ?>
Hope it helps, Thanks for reading and enjoy the Magento coding.