Html markup in cakephp's $html->link, eg. $html->link('Hey')?

前端 未结 2 1981
轮回少年
轮回少年 2021-01-06 07:42

I have this block of code in a cakephp .ctp file:

Html->link(\'Hello Stack Overflow\',

2条回答
  •  既然无缘
    2021-01-06 08:28

    or

    echo $this->Html->link('Hello', array('controller'=>'pages', 'action'=>'home')).' '.$this->Html->tag('span', $this->Html->link('Stack Overflow', array('controller'=>'pages', 'action'=>'home')), array()); 
    

提交回复
热议问题