I have my cart contents displaying in the header via a jQuery mouseover balloon. It currently displays the number of items in the cart and total. I would like to add the qty and item name as well. Similar to how it displays in the cart sidebox, but truncating it with a "more" link if more than 3 line items. Can someone help?
Here is my code:
I appreciate any help. I'm racking my brain trying to figure it out.PHP Code:<table border=0 cellpadding=0 width=180 height=100% align=center>
<tr>
<td valign=top><strong>Your Cart:</strong><br><?php echo sizeof($_SESSION['cart']->get_products()); ?> Item(s):
<?php $header_cart = $currencies->format($_SESSION['cart']->show_total());
echo $header_cart;
?></td>
</tr>
</table>![]()



