Magento – How to get review form page url in view.phtml in magento

list.phtmlmagento-1.9

How to get review form page url in view.phtml in magento
I want to get the Be first to review this product url in view.phtml file

Best Answer

you can get url

<a href="<?php echo Mage::getUrl('review/product/list', array(
           'id'        => $productid,
           'category'  => $categoryid
        ));?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a>
Related Topic