Advertisement
Advertisement
| 07.09.2008 at 11:44AM PDT, ID: 23551329 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
<div class="topheader"><h2>recent forum threads</h2></div>
<div class="borderbox">
<?php
mysql_connect("localhost", "therover", "redapple");
mysql_select_db("therover");
$select = mysql_query("SELECT * FROM `phpbb_topics` ORDER BY `topic_id` DESC LIMIT 0,10");
while($row = mysql_fetch_array($select)) {
echo '<ul id="sidelinksforum">';
echo '<li><a href="/forum/viewtopic.php?f='.$row['forum_id'].'&t='.$row['topic_id'].'">'.$row['topic_title'].'</a></li>';
echo '</ul>';
}
?>
</div>
|