$LogoImage Search Results\n"; $found = $count = 0; // from classic wiki: $pat =~ s/[+?.*()[\]{}|\\]/\\$&/g; $full = preg_replace("/[+?.*()[\]{}|\\\]/", "", $full); // looping through all keys $key = dbmfirstkey($dbi); while ($key) { $pagedata = dbmfetch($dbi, $key); // test the serialized data first, before going further if (preg_match("/$full/i", $pagedata)) { echo "

", LinkExistingWikiWord($key), "

\n"; $pagehash = unserialize($pagedata); // 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]); $found += count($pmatches); echo "
  • ", $matched, "
  • \n"; } } echo "
    \n"; } $count++; $key = dbmnextkey($dbi, $key); } echo "$found matches found out of $count pages searched.\n"; WikiFooter(); ?>