You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
934 B
PHP
47 lines
934 B
PHP
<div id="HauptSeite">
|
|
<div id="Inhalt">
|
|
<div class="o" >
|
|
<div class="l" >
|
|
<div class="r" >
|
|
<div class="u" >
|
|
<div class="ro">
|
|
<div class="lo">
|
|
<div class="ru">
|
|
<div class="lu">
|
|
|
|
<?php
|
|
echo "<h2>".$sprache_suchergebnisse."</h2><br>\n";
|
|
if ($_suche != ""){
|
|
reset($navigation);
|
|
while (list ($nKey,list($ntxt,$nhtml,$ninfo)) = each ($navigation)) {
|
|
if (!$sys_admin && substr($nKey,0,13) == '$Adminbereich') break;
|
|
if ($nhtml != '' && substr($ninfo,0,1) != '$'){
|
|
$filename = $verz_html."/".$nhtml;
|
|
if (file_exists($filename)){
|
|
if ($lfile = fopen($filename, 'r')){
|
|
$suchtext = fread ($lfile, 1024*1024);
|
|
if (stripos($suchtext,$_suche) !== false){
|
|
echo '<a href="'.HtmlHref($_self . '?ap=' . $nKey).'">'.$ntxt."</a><br>\n";
|
|
}
|
|
fclose ($lfile);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
<br>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<br>
|