I\'m using Magento.
I want display and call one phtml
file as a link in another phtml
file…
I have the new.phtml
file on t
Use the below code for rendering your phtml file in another phtml file.
getLayout()->createBlock('core/template')->setTemplate('templatefolderpath/filename.phtml')->toHtml(); ?>
For more refinement of your code, you can use the block name and block file name instead of core/template because core/template use the core resources.