Step1: Get the Product Actual Price:
<?php
// without currency sign
$_actualPrice = $_product->getPrice();
echo $_actualPrice;
// with currency sign
$_formattedActualPrice = Mage::helper('core')->currency($_product->getPrice(),true,false);
echo $_formattedActualPrice;
?>
Step2: Get the Product Special Prices:
<?php
// without currency sign
$_specialPrice = $_product->getFinalPrice();
echo $_specialPrice;
// with currency sign
$_formattedSpecialPrice = Mage::helper('core')->currency($_product->getFinalPrice(),true,false);
echo $_formattedSpecialPrice;
?>
Step13 Get the Particular Product Price:
<?php
// particular product
$_productId = 52;
$_product = Mage::getModel('catalog/product')->load($_productId);
?>