Saturday, August 16, 2008

A function for punbb

<?php
define('PUN_ROOT', './bbs/');
require PUN_ROOT.'include/common.php';
 
function ShowForum($fid,$loop){
//show $loop topics of Forum $fid
//fid: Forum id;
//$loop: number of topics;
$result = mysql_query("SELECT * FROM punbb_topics WHERE forum_id='$fid' ORDER BY id DESC");
 
while(($row = mysql_fetch_array($result)) && ($loop>0))
  {
  echo "<lh><a href='bbs/viewtopic.php?id=". $row['id'] . "'>" . $row['subject'] . "</a></lh>";
  echo "<br />";
  $loop--;
  }
}//function ShowForum
 
ShowForum(1,10);
?>

No comments: