How to show billing details on shipping method step Magento

<?php

$checkout = Mage::getSingleton(‘checkout/session’)->getQuote();

$billing = $checkout->getBillingAddress();

echo $billing->getName() . $billing->getStreet(1) . $billing->getPostcode() . $billing->getCity() . $billing->getCountry();

?>