Hi
dreh grad wieder mal durch weil ich es nicht checke.
Folgender Code füllt mir mein Dropdown nicht richtig
Code
$query = "SELECT a.id, a.ballon_id, a.ballon_name, a.ballon_start, a.ballon_ende
from ballon a where ballon_id = '$obj_id'";
$result = mysql_query($query)
or die("Anfrage fehlgeschlagen: <br>". mysql_error() ."<br>");
$ballon_db="<table align='center' class='table_schrift' bgcolor='#F2F2F2' width='760' border='1' cellspacing='2' cellpadding='2'>";
$ballon_drop_start_day="<select name='ballon_start_day_new'";
while ($line = mysql_fetch_array($result)) {
//Timestamp zu Tag
$ballon_start_day = date("j",$line[ballon_start]);
// Ende Timestamp zu Tag
for($y=0;$y < 32;$y++)
{
$ballon_drop_start_day .='<OPTION value="'.$y.'"';
if($ballon_start_day == $y)
$ballon_drop_start_day .='selected';
$ballon_drop_start_day .='>'.$y.'</OPTION>';
}
$ballon_db .="<tr><td>$ballon_drop_start_day</select></td></tr>";
}
$ballon_db .="</table>
Alles anzeigen
Das Problem dabei ist jetzt das mir das Dropdown je nach dem wieviel Ergebnisse es gibt doppelt und dreifach gefüllt wird.
Entweder seh ich den Wald vor lauter Bäumen nicht, da mir keine Lösung dazu einfällt oder ich bin zu bescheuert.
Vielleicht weiß ja jemand von euch rat.
Danke
Morrers