include ("header.php");
?>
$abfrage = "SELECT * FROM BilderTAB";
$erg = mysqli_query($verbindung,$abfrage);
// DatenAuswahl
$result = mysqli_query($verbindung, "SELECT idb, datum, titel_d, thumb2, link FROM BilderTAB $string ORDER BY datum DESC" );
?>
|
|
|
|
|
|
|
|
|
|
|
while ($row = mysqli_fetch_row( $result )) { ?>
" style="float: left; margin-left:15px; margin-top:15px; margin-bottom:5px; width:145px; height:175px; background-color: #EAECEE; border: 1px dashed green;">
| echo "$row[1]"; ?> |
if ($row[4]== "") {
echo " ";
}
else {
echo " ";
}
?>
|
| echo "$row[2]"; ?> |
} ?>
|
|
include ("fuss.php");
?>