<?php
/************************************************************************/
/* ViperWeb: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Raptr & Godboko */
/* http://development.ea-hq.net */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/* */
/* Based on PHP-Nuke found at http://www.phpnuke.org */
/************************************************************************/
if (!eregi("index.php", $PHP_SELF))
$index = 1;
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
$pagetitle = "- "._ACTIVETOPICS."";
include("includes/header.php");
$result = sql_query("select topicid, topicname, topicimage, topictext from ".$prefix."_topics order by topicname", $dbi);
if (sql_num_rows($result, $dbi)==0) {
include("includes/header.php");
include("includes/footer.php");
}
if (sql_num_rows($result, $dbi)>0) {
OpenTable();
echo "<center><font class=\"title\"><b>"._ACTIVETOPICS."</b></font><br>\n"
."<font class=\"content\">"._CLICK2LIST."</font><br><br>\n"
."<form action=\"index.php?mod=Search\" method=\"post\">"
."<input type=\"name\" name=\"query\" size=\"30\"> "
."<input type=\"submit\" value=\""._SEARCH."\">"
."</form></center><br><br>"
."<table border=\"0\" width=\"100%\" align=\"center\" cellpadding=\"2\"><tr>\n";
while(list($topicid, $topicname, $topicimage, $topictext) = sql_fetch_row($result, $dbi)) {
if ($count == 5) {
echo "<tr>\n";
$count = 0;
}
echo "<td align=\"center\">\n"
."<a href=\"index.php?mod=News&new_topic=$topicid\"><img src=\"images/topics/$topicimage\" border=\"0\" alt=\"$topictext\"></a><br>\n"
."<font class=\"content\"><b>$topictext</b></font>\n"
."</td>\n";
/* Thanks to John Hoffmann from softlinux.org for the next 5 lines ;) */
$count++;
if ($count == 5) {
echo "</tr>\n";
}
}
if ($count == 5) {
echo "</table>\n";
} else {
echo "</tr></table>\n";
}
}
CloseTable();
include("includes/footer.php");
?>