include ("header.php");
?>
$abfrage = "SELECT * FROM HaengTAB";
$erg = mysqli_query($verbindung,$abfrage);
// DatenAuswahl
?>
if (isset($typsel)) {
if ($typsel== "-alle-") { $string = "WHERE recht = 'public'"; }
else {$string = "WHERE recht = 'public' AND TYP = '$typsel'";}
}
$result = mysqli_query($verbindung, "SELECT idh, datum, typ, titel_d, autor FROM HaengTAB $string ORDER BY datum DESC" );
?>
//include ("fuss.php");
?>