<?php
$checkout = Mage::getSingleton(‘checkout/session’)->getQuote();
$billing = $checkout->getBillingAddress();
echo $billing->getName() . $billing->getStreet(1) . $billing->getPostcode() . $billing->getCity() . $billing->getCountry();
?>
<?php
$checkout = Mage::getSingleton(‘checkout/session’)->getQuote();
$billing = $checkout->getBillingAddress();
echo $billing->getName() . $billing->getStreet(1) . $billing->getPostcode() . $billing->getCity() . $billing->getCountry();
?>