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
Try this :
echo $this->Html->link('', array( 'controller' => 'Mycont', 'action' => 'deletepic', $id ), array( 'confirm' => 'Are you sure you want to delete the image?', 'class' => 'deleteImg' ));
I have linked image to in class deleteImg.