Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: User Activity & Topics Started

here’s another way of forming my question….

this

<h2>Latest Forum Discussions</h2>
<ul>
<?php
global $wpdb;
$query="SELECT * FROM bb_topics WHERE topic_status=0 ORDER BY topic_time DESC LIMIT 10";
$results=$wpdb->get_results($query);
foreach ($results as $result) {
echo "<li><a href='/forums/topic.php?id=".$result->topic_id."'>".$result->topic_title."</a></li>";
}
?>
</ul>

gets the Latest Forum Discussions, how do I get a USER SPECIFIC Latest Forum Discussions?

Skip to toolbar