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
Yes It's possible to make an image as anchor tag. You just needs to set escape = false for it like below :-
Html->image('yourimage.png',array('alt'=>'yoursite.com','class'=>'yourclass'));
echo $this->Html->link( $thumb_img, array('controller'=>'yourcontroller','action'=>'youraction'), array('escape'=>false));
?>