home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 April
/
PCWorld_2005-04_cd.bin
/
akce
/
web
/
phpnuke
/
PHP-Nuke-7.5.exe
/
html
/
modules
/
FAQ
/
index.php
Wrap
PHP Script
|
2004-08-21
|
5KB
|
111 lines
<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* ====================== */
/* Based on Automated FAQ */
/* Copyright (c) 2001 by */
/* Richard Tirtadji AKA King Richard (rtirtadji@hotmail.com) */
/* Hutdik Hermawan AKA hotFix (hutdik76@hotmail.com) */
/* http://www.phpnuke.web.id */
/* */
/* 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. */
/************************************************************************/
/* Additional security & Abstraction layer conversion */
/* 2003 chatserv */
/* http://www.nukefixes.com -- http://www.nukeresources.com */
/************************************************************************/
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
$pagetitle = "- $module_name";
function ShowFaq($id_cat, $categories) {
global $bgcolor2, $sitename, $prefix, $db, $module_name;
OpenTable();
echo"<center><font class=\"content\"><b>$sitename "._FAQ2."</b></font></center><br><br>"
."<a name=\"top\"></a><br>" /* Bug fix : added missing closing hyperlink tag messes up display */
.""._CATEGORY.": <a href=\"modules.php?name=$module_name\">"._MAIN."</a> -> $categories"
."<br><br>"
."<table width=\"100%\" cellpadding=\"4\" cellspacing=\"0\" border=\"0\">"
."<tr bgcolor=\"$bgcolor2\"><td colspan=\"2\"><font class=\"option\"><b>"._QUESTION."</b></font></td></tr><tr><td colspan=\"2\">";
$id_cat = intval($id_cat);
$result = $db->sql_query("SELECT id, id_cat, question, answer FROM ".$prefix."_faqanswer WHERE id_cat='$id_cat'");
while ($row = $db->sql_fetchrow($result)) {
$id = intval($row['id']);
$id_cat = intval($row['id_cat']);
$question = stripslashes(check_html($row['question'], "nohtml"));
$answer = stripslashes($row['answer']);
echo"<strong><big>·</big></strong> <a href=\"#$id\">$question</a><br>";
}
echo "</td></tr></table>
<br>";
}
function ShowFaqAll($id_cat) {
global $bgcolor2, $prefix, $db, $module_name;
$id_cat = intval($id_cat);
echo "<table width=\"100%\" cellpadding=\"4\" cellspacing=\"0\" border=\"0\">"
."<tr bgcolor=\"$bgcolor2\"><td colspan=\"2\"><font class=\"option\"><b>"._ANSWER."</b></font></td></tr>";
$id_cat = intval($id_cat);
$result = $db->sql_query("SELECT id, id_cat, question, answer FROM ".$prefix."_faqanswer WHERE id_cat='$id_cat'");
while ($row = $db->sql_fetchrow($result)) {
$id = intval($row['id']);
$id_cat = intval($row['id_cat']);
$question = stripslashes(check_html($row['question'], "nohtml"));
$answer = stripslashes($row['answer']);
echo"<tr><td><a name=\"$id\"></a>"
."<strong><big>·</big></strong> <b>$question</b>"
."<p align=\"justify\">$answer</p>"
."[ <a href=\"#top\">"._BACKTOTOP."</a> ]"
."<br><br>"
."</td></tr>";
}
echo "</table><br><br>"
."<div align=\"center\"><b>[ <a href=\"modules.php?name=$module_name\">"._BACKTOFAQINDEX."</a> ]</b></div>";
}
if (!$myfaq) {
global $currentlang, $multilingual;
if ($multilingual == 1) {
$querylang = "WHERE flanguage='$currentlang'";
} else {
$querylang = "";
}
include("header.php");
OpenTable();
echo "<center><font class=\"option\">"._FAQ2."</font></center><br><br>"
."<table width=\"100%\" cellpadding=\"4\" cellspacing=\"0\" border=\"0\">"
."<tr><td bgcolor=\"$bgcolor2\"><font class=\"option\"><b>"._CATEGORIES."</b></font></td></tr><tr><td>";
$result2 = $db->sql_query("SELECT id_cat, categories FROM ".$prefix."_faqcategories $querylang");
while ($row2 = $db->sql_fetchrow($result2)) {
$id_cat = intval($row2['id_cat']);
$categories = stripslashes($row2['categories']);
$catname = urlencode($categories);
echo"<strong><big>·</big></strong> <a href=\"modules.php?name=$module_name&myfaq=yes&id_cat=$id_cat&categories=$catname\">$categories</a><br>";
}
echo "</td></tr></table>";
CloseTable();
include("footer.php");
} else {
include("header.php");
ShowFaq($id_cat, $categories);
ShowFaqAll($id_cat);
CloseTable();
include("footer.php");
}
?>