Magento : Display number of Product in “My Cart”

Please go to Mage Library and Edit links file with below code.
mage/checkout/block/links.php

$count=Mage::helper(‘checkout/cart’)->getItemsCount();`
if($count>=1) {
$text=$this->__(‘Mycart(%s items)’,$count);
}else{
$text=$this->__(‘Mycart’);
}

 

Hope it will work.