Arthur Yakovlev
Arthur Yakovlev

Reputation: 9309

How i can create url from .phtml in magento

I want in magento create link as it. From .phtml file. I am can't find method for did it

magento/index.php/quotes/index/create/id/1/

Upvotes: 0

Views: 309

Answers (1)

Marius
Marius

Reputation: 15206

Try this:

Mage::getUrl('quotes/index/create', array('id'=>1));

Upvotes: 2

Related Questions