Comments Display + Comments Counter

4 posts by 2 authors in: Forums > CMS Builder
Last Post: July 2, 2010   (RSS)

By ILLUME-MEDIA-LABS - July 1, 2010 - edited: July 1, 2010

Hi,

I wanted some help setting up a 'Latest Comments' section for my website were it would like the 5 most recent comments made. [FIXED]

Also, how can I add a counter so it shows the # of comments per article?

Thanks.

Re: [Illume Magazine] Comments Display + Comments Counter

By gkornbluth - July 1, 2010

Hi,

Can you work with something like a simple record counter?

Before the foreach loop that pulls the comments

<?php $count = 0; ?>

Inside the foreach loop

<?php $count++; ?>

To print the number of comments:

There are <?php echo $count ?> comments.

Best,

Jerry Kornbluth
The first CMS Builder reference book is now available on-line!







Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php

Re: [gkornbluth] Comments Display + Comments Counter

By ILLUME-MEDIA-LABS - July 2, 2010

Hi,

Thanks for the post. I did that, but I receive the following error: Notice: Undefined variable: count in /home/content/i/l/l/illumemedia/html/newTemplates/articleDetail.php on line 172