How to get coupon code applied on cart in Magento.?
Magento get coupon code applied on cart code
You can use the following getCouponCode method to apply coupon code on cart in Magento
$coupon_code = Mage::getSingleton('checkout/session') ->getQuote()->getCouponCode();
You can follow this code to get get coupon code applied on cart from the current quote.