Dr Dau
ich wisch hier durch
PHP:
<?php
if(isset($_GET['section'])) {
switch($_GET['section'])
case "news":
$inhalt = include "news.php";
$bild = "news.jpg";
break;
default:
$inhalt = include "default.php";
$bild = "default.jpg";
break;
} else {
$inhalt = include "default.php";
$bild = "default.jpg";
}
echo "Text Text ".$inhalt." Text Text<br>";
echo "<img src='".$bild."'>";
?>