TheSmile
TheSmile

Reputation: 360

Yii How to add link into opentag table text

How to add link into opentag table text ?

In Yii Code like this:

echo CHtml::tag('td', array('class'=>"apptd2"), CHTML::encode($model->gametitle));

In source code like this:

<td class="apptd2">
     Gametitle
</td>

What I want is:

<td class="apptd2">
     <a href="#">Gametitle</a>
</td>

How to add a href for yii opentag code ?

Upvotes: 0

Views: 349

Answers (1)

MH2K9
MH2K9

Reputation: 12039

Can use CHtml::link() as second parameter of CHtml::tag. Example:

echo CHtml::tag(
    'td',
    array('class'=>"apptd2"),
    CHtml::link(
        CHtml::encode($model->gametitle),
        '#'
    )
 );

Upvotes: 1

Related Questions