How to create a Widget - Recent Comments widget

Comparing #1 with #2

Revision #2 was created by Nisanth thulasi Nisanth thulasi on Jun 11, 2014, 5:25:30 PM.

comments changed to $comments

Content

[...]
```php
<ul>
<?php
$comments = $this->getComments();

foreach(
$comments as $comment)
{
echo "<li> {$comment->fieldName}</li>";
}
?>
</ul>
[...]