2 mal Drop-Down

J27

Grünschnabel
Hallo,

ich hab da ein Problem. In meinem Quellcode befinden sich 2 Drop-Down Menu's, wobei der Inhalt des 2. von der Auswahl des 1. abhängig ist. Wenn ich nun beide Felder nacheinander anwähle ruft sich das Programm wieder auf und der erste Wert wird auf seinen Anfangswert zurückgesetzt und dementsprechend der zweite ausgewählt.
Kann ich das erneute Aufrufen der Seite nach Benutzung des 2.Drop-Down-Menu's unterbinden oder läßt sich der Wert des ersten Menu's einfrieren?
Wäre cool wenn jemand was dazu weiss..
 
Obwhol ich nicht ganz verstehe was du meinst klingt das eigentlich mehr nach nem html prob. :
Code:
<select name="jahr" size="1">
  <option>2001
  <option selected>2002
  <option>2003
  <option>2004
  <option>2005
  <option>2006
</select>

dafür das das select an der richtigen stelle steht muss natürlich dein php-script sorgen.

tob
 
Ich glaube das kam falsch rüber. Ich schicke mal den Quellcode der zwei Menu's:

1. DROP DOWN MENU
echo "<table align=center border=0>";

echo "<tr><td colspan=9 align=center><strong>Kunde: </strong><select name=BESTGROUP size=\"1\">";



while ($BestGroup = mysql_fetch_row($BestGroupSet)){
echo "<option";
echo " value=\"".$BestGroup[0]."\">";
echo $BestGroup[0];
echo "</option>";
}

echo "</select><input type=\"Submit\" name=\"BESTSELECT\" value=\"Auswahl\"></td>";

..

.
.
....
..
2. DROP DOWN MENU
echo "<td><strong>Kompolo: </strong><select name=KOMPGROUP size=\"1\">";
while ($KompGroup = mysql_fetch_row($KompGroupSet)){
echo "<option";
echo " value=\"".$KompGroup[0]."\">";
echo $KompGroup[0];
echo "</option>";
}
echo "<option value=\"Alle\">Alle</option>";
echo "</select><input type=\"Submit\" name=\"KOMPSELECT\" value=\"Auswahl\"></td></tr>";
echo "</table>";
 
Ich glaube das kam falsch rüber. Ich schicke mal den Quellcode der zwei Menu's:

1. DROP DOWN MENU
echo "<table align=center border=0>";

echo "<tr><td colspan=9 align=center><strong>Kunde: </strong><select name=BESTGROUP size=\"1\">";



while ($BestGroup = mysql_fetch_row($BestGroupSet)){
echo "<option";
echo " value=\"".$BestGroup[0]."\">";
echo $BestGroup[0];
echo "</option>";
}

echo "</select><input type=\"Submit\" name=\"BESTSELECT\" value=\"Auswahl\"></td>";

..

.
.
....
..
2. DROP DOWN MENU
echo "<td><strong>Kompolo: </strong><select name=KOMPGROUP size=\"1\">";
while ($KompGroup = mysql_fetch_row($KompGroupSet)){
echo "<option";
echo " value=\"".$KompGroup[0]."\">";
echo $KompGroup[0];
echo "</option>";
}
echo "<option value=\"Alle\">Alle</option>";
echo "</select><input type=\"Submit\" name=\"KOMPSELECT\" value=\"Auswahl\"></td></tr>";
echo "</table>";
 
Zurück