$LogoImage Search Results\n"; $found = $count = 0; // from classic wiki: $pat =~ s/[+?.*()[\]{}|\\]/\\$&/g; // disallow _'_ and _%_ too, _\_ have to be doubled $full = preg_replace("/[+?.*()'%[\\]{}|\\\\]/", "", $full); // search matching pages $query = InitFullSearch($dbi, $full); while ($page = FullSearchNextMatch($dbi, $query)) { $pagename = $page['name']; $pagehash = $page['hash']; echo "

", LinkExistingWikiWord($pagename), "

\n"; $count++; // print out all matching lines, highlighting the match for ($j = 0; $j < (count($pagehash["text"])); $j++) { if (preg_match("/$full/i", $pagehash["text"][$j], $pmatches)) { $matched = preg_replace("/$full/i", "\\0", $pagehash["text"][$j]); echo "
  • ", $matched, "
  • \n"; $found += count($pmatches); } } echo "
    \n"; } echo "$found matches found in $count pages.\n"; echo WikiFooter(); ?>