Re: How to Show Last Ten Posts in Sidebar?
Yeah, it has some very AWESOME code in there, this code generates a list of topics that was active as last:
<?php if ( bb_forums() ) : ?>
<h3>Actieve onderwerpen</h3>
<ul style="color:#bbb;">
<?php
global $bbdb;
$query="SELECT * FROM bb_topics WHERE topic_status=0 ORDER BY topic_time DESC LIMIT 5";
$results=$bbdb->get_results($query);
foreach ($results as $result) {
echo "
";
}
?>
<?php endif; ?>
I did some adjustment in the code, to make it work. SWEET.
But not really what I was looking for, but o well.