Список 10 последних комментариев



<?php
$max
= 10; // количество комментариев
$query = 'SELECT nid,cid,subject FROM {comments} order by timestamp desc ';
$result = db_query_range($query, 0, $max);
$items = array ();
while (
$comment = db_fetch_object($result)) {
   
$items[] = l($comment->subject, "node/$comment->nid", NULL, NULL, "comment-$comment->cid");
}
if (
count($items)) {
    return
theme('item_list', $items);
}
?>

Comments

Создал вот сайт на самой простой системе управления контентом. Напоминает немножко Drupal, но еще проще. Присутствует вывод модуля ПОСЛЕДНИЕ КОММЕНТАРИИ

Post new comment

The content of this field is kept private and will not be shown publicly.
Image CAPTCHA
Copy the characters (respecting upper/lower case) from the image.