home *** CD-ROM | disk | FTP | other *** search
- <?php
-
- ######################################################################
- # PHP-NUKE: Web Portal System
- # ===========================
- #
- # Copyright (c) 2002 by Francisco Burzi (fbc@mandrakesoft.com)
- # http://phpnuke.org
- #
- # 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.
- ######################################################################
-
- if (!eregi("modules.php", $PHP_SELF)) {
- die ("You can't access this file directly...");
- }
-
- require_once("mainfile.php");
- $module_name = basename(dirname(__FILE__));
- get_lang($module_name);
- include("header.php");
-
- if (isset($query) AND (isset($eid)) AND ($query != "")) {
- $result = sql_query("select tid, title from ".$prefix."_encyclopedia_text where eid='$eid' AND title LIKE '%$query%'", $dbi);
- $result2 = sql_query("select title from ".$prefix."_encyclopedia where eid='$eid'", $dbi);
- list($ency_title) = sql_fetch_row($result2, $dbi);
- title("$ency_title: "._SEARCHRESULTS."");
- OpenTable();
- echo "<center><b>"._SEARCHRESULTSFOR." <i>$query</i></b></center><br><br><br>"
- ."<i><b>"._RESULTSINTERMTITLE."</b></i><br><br>";
- if (sql_num_rows($result, $dbi) == 0) {
- echo _NORESULTSTITLE;
- } else {
- while(list($tid, $title) = sql_fetch_row($result, $dbi)) {
- echo "<strong><big>·</big></strong> <a href=\"modules.php?name=$module_name&op=content&tid=$tid\">$title</a><br>";
- }
- }
- $result = sql_query("select tid, title from ".$prefix."_encyclopedia_text where eid='$eid' AND text LIKE '%$query%'", $dbi);
- echo "<br><br><i><b>"._RESULTSINTERMTEXT."</b></i><br><br>";
- if (sql_num_rows($result, $dbi) == 0) {
- echo _NORESULTSTEXT;
- } else {
- while(list($tid, $title) = sql_fetch_row($result, $dbi)) {
- echo "<strong><big>·</big></strong> <a href=\"modules.php?name=$module_name&op=content&tid=$tid&query=$query\">$title</a><br>";
- }
- }
- echo "<br><br>"
- ."<center><form action=\"modules.php?name=$module_name&file=search\" method=\"post\">"
- ."<input type=\"text\" size=\"20\" name=\"query\"> "
- ."<input type=\"hidden\" name=\"eid\" value=\"$eid\">"
- ."<input type=\"submit\" value=\""._SEARCH."\">"
- ."</form><br><br>"
- ."[ <a href=\"modules.php?name=$module_name&op=list_content&eid=$eid\">"._RETURNTO." $ency_title</a> ]<br><br>"
- .""._GOBACK."</center>";
- CloseTable();
- } else {
- OpenTable();
- echo "<center>"._SEARCHNOTCOMPLETE."<br><br><br>"
- ."<center><form action=\"modules.php?name=$module_name&file=search\" method=\"post\">"
- ."<input type=\"text\" size=\"20\" name=\"query\"> "
- ."<input type=\"hidden\" name=\"eid\" value=\"$eid\">"
- ."<input type=\"submit\" value=\""._SEARCH."\">"
- ."</form><br><br>"
- .""._GOBACK."</center>";
- CloseTable();
- }
-
- include("footer.php");
-
- ?>