for my magento backend I need a link which is consiting of different customer informations. So I want to get the specific Inforamions out of the backend but I don't know how. I've already looked into the adminhtml/.../template/sales/order/view/info.phtml and found the following line:
<?php echo $this->htmlEscape($_order->getCustomerName()) ?>
This is fine, but I need diffenent variables for Customer Name, - Street, -Postcode, City to build up a link like that: www.domain.de/category&name=CustomerName&Street=CustomerStreet& .... How can I get these variables? Thanks a lot for every answer!!