Ken Pooley wrote:
> <? $topicart = &(topic.id); ?>
> $article = mgd_list_topic_articles_all_fast( $topicart, "score");
> if( $article->N == 0 ) {
> echo "No article";
> } else {
> while( $article->fetch() ) {
> ?> &(article.name); <br> <?php
> }
> echo "$article->N article", ( $article->N == 1 ) ? '' :
> 's';
> }
> ?>
> <? } ?>
This was probably answered before but I'm clearing my inbox. This
doesn't
work, use
$topicart = $topic->id;
instead, or just
$article = mgd_list_topic_articles_all_fast($topic->id, "score");
Emile "99 messages for help in my mail, 99 messages for help..." Heyns
--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org
To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]