Gympie Online is a local business, trades and services directory for Gympie and the Cooloola Coast.
Latest Forum Topics
$url = "http://forum.gympieonline.com"; // If url is - http://www.yourforums.com/forums , then enter in "/forums"
if(empty($count))
$count = "5"; // How many topics to link to
$dbms = 'mysql';
$dbhost = 'localhost';
$dbname = 'gympieforum';
$dbuser = 'phpbb';
$dbpasswd = 'shanna';
$table_prefix = 'phpbbmain_';
$db = @mysql_connect("$dbhost", "$dbuser", "$dbpasswd");/* or die("here we die at connection"); */
if (isset($db))
{
if(@mysql_select_db("$dbname",$db)==true)
{
$prefix = "$table_prefix";
$query="SELECT * FROM phpbbmain_topics ORDER BY `topic_id` DESC LIMIT 0, $count";
$result=mysql_query($query);
while($row = mysql_fetch_array($result)) {
$topicid = "$row[topic_id]";
$title = "$row[topic_title]";
$forumid = "$row[forum_id]";
$replies = "$row[topic_replies]";
echo "-
$title (
$replies)
";
}
}
}
?>