Ich habs jetzt so:
index.php
Code:
<
html>
<head>
</head>
<body>
<?
$dir = @opendir(".");
$LoadOnlyCaption = 1;
while($file = @readdir($dir)){
if(($file != '.') and ($file != '..') and ($file != 'index.php') and (!is_dir($file))){
include($file);
echo "<a href=\"index.php?seite=$file\">$Beschreibung[$file]</a>";
}
}
echo "
";
echo "
";
unset($LoadOnlyCaption);
@include($_GET["seite"]);
?>
</body>
</
html>
seite1.php
Code:
<
html>
<head>
</head>
<body>
<?
if(!empty($LoadOnlyCaption)){
$Beschreibung["seite1.php"] = "Das Wetter wird wolkig.
";
} else {
echo '[
url=""][img]icons/weather_cloudy.png[/img][/
url] Wolkig!
';
}
?>
</body>
</
html>
Dabei werden alle Seiten gefunden, aber nur die mit Beschreibung auch ausgegeben. Das find ich gut.
Danke!
MfG
freak