As of my knowledge these both are used for creating links :
What is the main difference between $this->Html->url and $this->Html->link in Cakephp?
Is there any performance issues occurs for using these?
What if i want to open link in new tab using "$this->Html->url"
What i tried :
<?php echo $this->Html->url($item['News']['link'],array('target'=>'_blank', 'escape' => false)); ?>
but its not working. open link in same tab.
Thanks in advance.