php - Yii: CHtml:link with an image and div -


this question has answer here:

how create link image , div in yii.

<a href="#">     <img src="uploads/image.jpg" title="sports" />     <div class="media-title mosaic-overlay">         <?php echo chtml::link(chtml::encode($data->evntcatm_name), array('view', 'id'=>$data->evntcatm_name)); ?>     </div> </a> 

right now, have given link text only, want give link image , div together.

<a href="<?php echo yii::app()->createurl('view', array('id' => $data->evntcatm_name))?>">     <img src="uploads/image.jpg" title="sports" />     <div class="media-title mosaic-overlay">         <?php echo chtml::encode($data->evntcatm_name) ?>     </div> </a> 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -