php - Yii: CHtml:link with an image and div -
this question has answer here:
- image link in yii framework 1 answer
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
Post a Comment