Get Category Url from ID in Magento
Use the below code to get the category url from the category ID in magento
$category_id = 14;
Mage::getModel("catalog/category")->load($category_id)->getUrl();
Cheers!
Amjath
Use the below code to get the category url from the category ID in magento
$category_id = 14;
Mage::getModel("catalog/category")->load($category_id)->getUrl();
Cheers!
Amjath
Its works,,,,thanks