By Example: CHtml

Comparing #19 with #20

Revision #20 was created by balrok balrok on Nov 14, 2010, 12:46:02 PM.

corrected chtml::button controller/action link (must be an array else it will be treated as absolut url)

Content

[...]
***

**Example 1: Connecting a button to a controller action**

```php
<?php echo CHtml::button('Button Text', array('submit' =>
array('controller/action'))); ?>
```

**HTML Output:**

```php
[...]