If you want to get the total price of items in your Magento cart, you can use code like this:
<?php
echo $this->helper('checkout')->formatPrice(Mage::getSingleton('checkout/cart')->getQuote()->getGrandTotal());
?>
It's my blog for Internet Things
If you want to get the total price of items in your Magento cart, you can use code like this:
<?php
echo $this->helper('checkout')->formatPrice(Mage::getSingleton('checkout/cart')->getQuote()->getGrandTotal());
?>