Loading the Product
<?php $productId = 102; $product = Mage::getModel('catalog/product')->load($productId); ?>
Get and display the Actual Product Price
<?php echo $actualPrice = $product->getPrice(); //without currency symbol ?>
with currency sign
<?php $formattedActualPrice = Mage::helper('core')->currency($product->getPrice(),true,false); ?>
Get Special Price without currency sign
<?php $specialPrice = $product->getFinalPrice(); ?>
with currency sign
<?php $formattedSpecialPrice = Mage::helper('core')->currency($product->getFinalPrice(),true,false); ?>
Hope it helps. Thanks.