Nein, ich glaube ich habe es jetzt geschafft!
Bin mal sehr Nach dran!
Vielen Dank für deine Hilfe.
Gruss adihas
Bin mal sehr Nach dran!
Vielen Dank für deine Hilfe.
Gruss adihas
<?
if(isset($action))
{
if($grossklein == "nein")
{
$wort = strtolower($wort);
}
$exit = "no";
$wort = trim ($wort);
if($wort == "")
{
$exit = "yes";
echo "<font color='red' face='Arial'><b><u>Fehler:</u></b> Bitte geben Sie einen Suchbegriff ein</font>";
}
if($exit == "no")
{
$handle = opendir ('php/');
while ($file = readdir ($handle)) {
if ($file != "." && $file != "..") {
$zeilen=file("php/$file");
$i=0;
while ($i<count($zeilen))
{
$zeile=explode('|',$zeilen[$i]);
$name = $zeile[8];
$suchtext = $zeile[7];
break;
$i++;
}
if($grossklein == "nein")
{
$suchtext = strtolower($suchtext);
}
if (preg_match ("/$wort/", "$suchtext"))
{
print "<font face='Arial'>Gefunden in Kategorie: $file | Scriptname: $name</font><br>";
$found="1";
}
}
}
closedir($handle);
if($found != "1")
{
echo "<font face='Arial'>Leider nichts zu \"$wort\" gefunden</font>";
}
}
}
?>
<form method="POST" action="<? echo "$PHP_SELF"; ?>">
<p><input type="text" name="wort" id="wort" value="<? echo $_POST['wort']; ?>" size="20"><br>
<font face='Arial'>Groß & Kleinschreibung beachten?<br><input type="radio" name="grossklein" value="ja" checked>ja
<input type="radio" name="grossklein" value="nein">nein</font><br>
<input type="submit" value="suchen">
<input type="hidden" name ="action" value="suchen"></p>
</form>
Kommentar