Hello,
<form method="post" action="galerie_ansicht_02.php">
<?php
include 'connect.php';
$res1 = mysql_query("SELECT ordner FROM galerie");
if (!$res1)
{
echo "Ein Fehler ist aufgetreten.\n";
}
else
{
$_options = array();
while ($row = mysql_fetch_assoc($res1))
{
// Hier muss dann wohl der Code rein (option..)
$_options[row[$id]] = $row['spaltenname'];
}
mysql_free_result($res1);
}
# und hier kannst Du dann aus dem Array $_options das HTML fürs Select-Element aufbauen:
# besser ist aber, Du machst eine Funktion daraus.
$html = " <select>\r\n";
foreach ($_options as $optionkey => $optiontext)
{
$html .= " <option .... >\r\n ## das musst Du mal selber fertig machen
}
$html = " </select>\r\n";
nur ao als Skizze ...
Liebe Grüße aus Syburg bei Dortmund
Tom vom Berg