"By Example" cookbook pages will provide coding examples for many of the commonly used classes within Yii. We will try to provide as many usage examples as possible for keep these pages as helpful as possible.

CHtml::link() method

public static string link(string $text, mixed $url='#', array $htmlOptions=array ( ))

Generates a hyperlink tag.

Example 1: Linking to a controller action

<?php echo CHtml::link('Link Text',array('controller/action'))); ?>

Example 2: Linking to a controller action with querystring parameters

<?php echo CHtml::link('Link Text',array('controller/action',
                                         $param1=>'value1'))); ?>

Example 3: Linking to a controller action with multiple querystring parameters

<?php echo CHtml::link('Link Text',array('controller/action',
                                         $param1=>'value1',
                                         $param2=>'value2',
                                         $param3=>'value3'))); ?>


Published:09/25/2009
View The Entire Article