Reputation: 9309
I want in magento create link as it. From .phtml file. I am can't find method for did it
magento
magento/index.php/quotes/index/create/id/1/
Upvotes: 0
Views: 309
Reputation: 15206
Try this:
Mage::getUrl('quotes/index/create', array('id'=>1));
Upvotes: 2