I\'m using cakephp 2.3.0. I searched in the manual for quite awhile, but I haven\'t found the answer. I\'m trying to use $this->Html->link, along with $this->Html->image. I\'m t
You need to add the escape option to the options array of your link() calls. Set it to false, like this:
escape
link()
false
echo $this->Html->link( $this->Html->image('mydog.jpg'), '/lol.html', array('escape' => false) );