How to call any phtml file into other phtml file in magento
<?php
echo
$this->getLayout()->createBlock('core/template')->setTemplate('checkout/cart.phtml')->toHtml();
?>
<?php
echo
$this->getLayout()->createBlock('core/template')->setTemplate('checkout/success.phtml')->toHtml();
?>
Comments
Post a Comment