Author Topic: Need help to track posts  (Read 3023 times)

0 Members and 1 Guest are viewing this topic.

Offline Stoleti

  • Hero Member
  • *****
  • Posts: 574
    • View Profile
Need help to track posts
« on: October 09, 2006, 09:22:48 PM »
I'm using dreamboard and i'm trying track the topics started per user, trying use this code but this ill not working what i need do ?

my code:
Quote
//-----------------------------------------------------
//--- Topics By User---------------------------------------
//-----------------------------------------------------
   $sql = "SELECT SUM(thrtopic) AS sum
         FROM ".BOARD_TCONT_TABLE."  WHERE user_id = '".$user_info['user_id']."' AND thrtopic  ORDER by thrdate DESC  ";
 $row = $site_db->query_firstrow($sql);

 $sum = (isset($row['sum'])) ? $row['sum'] : 0;
 $foruminfo = "".$row['sum']."\n";
 
 $site_template->register_vars("foruminfo", $foruminfo);
unset($foruminfo);

What i need do or change to make show the topics started by each user ?????


Offline bergblume

  • Sr. Member
  • ****
  • Posts: 463
  • on to the top!
    • View Profile
Re: Need help to track posts
« Reply #1 on: January 13, 2009, 09:39:54 AM »
is this solved?