Files
sternwarte_server/html/sternwarte/bildergalerie/bild_uebersicht_aus.php
2025-11-02 22:52:08 +01:00

70 lines
2.7 KiB
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Sternwarte Welzheim</title>
<!--[if IE 5]>
<link href="css/ie5.css" rel="stylesheet" type="text/css"/>
<![endif]--><!--[if IE]>
<style type="text/css">
<
link href
=
"css/ie.css"
rel
=
"stylesheet"
type
=
"text/css"
/
>
</style>
<![endif]-->
<link href="../css/sternwarte1.css" rel="stylesheet" type="text/css"/>
</head>
<body class="thrColFixHdr">
<div id="container2sp">
<?php include '../header.php'; ?>
<?php include '../navi.php'; ?>
<div id="mainContentBig">
<h1>Bildergalerie<br/>
Sternwarte Welzheim Das Weltall erleben!</h1>
<p>An der Sternwarte Welzheim wurden seit 1992 zahlreiche Farbfotos von Himmelsobjekten gemacht, die aufgrund
ihrer Qualität europaweite Beachtung fanden und vielfach publiziert wurden. </p>
<p>Im Rahmen einer Ausstellung wurden 30 großformatige Bilder mit den schönsten Aufnahmen von Mond, Planeten,
Sternhaufen, leuchtenden Gasnebeln und Galaxien 2009 im Rathaus in Stuttgart gezeigt. Zusammen mit kurzen
Erläuterungen entstand ein visuelles Potpourri vom Universum, das die Ästhetik von Farben und Formen im
Kosmos auf eindrucksvolle Weise vor Augen führte. </p>
<div class="fltlft2">
<?php include '../config_stern.php';
$abfrage = "SELECT gid, titel, bildk FROM galerie order by
gid ASC";
$ergebnis = mysqli_query($db, $abfrage);
$i = 0;
while ($row = mysqli_fetch_object($ergebnis)) {
$gid = $row->gid;
$titel = $row->titel;
$bildk = $row->bildk;
echo "<dl class='meImgLeft' style='width: 190px;'>" . "\n";
echo "<dt><a href='gal_bild_aus.php?id=$gid'><img src='../bilder/galerien/bildk/$bildk' border=0 width='190'></a></dt>" . "\n";
echo "<dd>$titel</dd>" . "\n";
$i++;
echo '</dl>' . "\n";
if ($i / 4 == round($i / 4)) {
echo "<br class='clear'/>" . "\n";
}
}
?>
</div>
<!-- end #mainContent --></div>
<!-- Dieses clear-Element sollte direkt auf das #mainContent-div folgen, um das #container-div anzuweisen, alle untergeordneten Floats aufzunehmen. -->
<br class="clearfloat"/>
<!-- end #container --></div>
</body>
</html>