Here, you will get the collection of cart items where you will get product id, name using foreach loop.
//Start of code
$quote = Mage::getModel(‘checkout/cart’)->getQuote();
foreach ($quote->getAllItems() as $item) {
$productName = $item->getProduct()->getName();
$productPrice = $item->getProduct()->getPrice();
}
//End of code