In Magento, how can I get active store information, like store name, line number, etc?
If You are working on Frontend Then Use:
$currentStore=Mage::app()->getStore();
If You have store id then use
$store=Mage::getmodel('core/store')->load($storeId);