Hallo,
ich habe eine Auswahlliste erstellt in der man in 3 Auswahlfeldern
etwas auswählen kann.
Hier ist der Code der Auswahlfelder:
Nun ist es aber so das man in allen 3 Feldern den gleichen Eintrag
wählen kann.
Ich möchte es aber gerne so haben das man eine Meldung
ausgegeben bekommt, das man gleiche Einträge ausgewählt hat.
Oder aber das der Eintrag der im 1. Auswahlfeld selectiert ist
in den beiden anderen Auswahlfeldern blockiert ist.
Wie kann man dies realsieren?
Grüße von Sven
ich habe eine Auswahlliste erstellt in der man in 3 Auswahlfeldern
etwas auswählen kann.
Hier ist der Code der Auswahlfelder:
Code:
<!--anfang nachricht--> <tr> <td width="200" rowspan="3" height="105"><strong>Tipps :</strong></td> <td width="275" rowspan="3" align="center" height="105"> <select size="1" name="bonus" class="text"> <option>Bonustipp</option><?=$_POST['bonus']; ?> </select> </td> <td width="50" align="center" height="35">1</td> <td width="275" align="center" height="35"> <select size="1" name="platz1" class="text"> <option> 1 Fernando Alonso</option><?=$_POST['platz1']; ?> <option> 2 Giancarlo Fisicella</option><?=$_POST['platz1']; ?> <option> 3 Kimi Räikkönen</option><?=$_POST['platz1']; ?> <option> 4 Juan Pablo Montoya</option><?=$_POST['platz1']; ?> <option> 5 Michael Schumacher</option><?=$_POST['platz1']; ?> <option> 6 Filipe Massa</option><?=$_POST['platz1']; ?> <option> 7 Ralf Schumacher</option><?=$_POST['platz1']; ?> <option> 8 Jarno Trulli</option><?=$_POST['platz1']; ?> <option> 9 Marc Webber</option><?=$_POST['platz1']; ?> <option>10 Nico Rosberg</option><?=$_POST['platz1']; ?> </select> </td> </tr> <tr> <td width="50" align="center" height="35">2</td> <td width="275" align="center" height="35"> <select size="1" name="platz2" class="text"> <option> 1 Fernando Alonso</option><?=$_POST['platz2']; ?> <option> 2 Giancarlo Fisicella</option><?=$_POST['platz2']; ?> <option> 3 Kimi Räikkönen</option><?=$_POST['platz2']; ?> <option> 4 Juan Pablo Montoya</option><?=$_POST['platz2']; ?> <option> 5 Michael Schumacher</option><?=$_POST['platz2']; ?> <option> 6 Filipe Massa</option><?=$_POST['platz2']; ?> <option> 7 Ralf Schumacher</option><?=$_POST['platz2']; ?> <option> 8 Jarno Trulli</option><?=$_POST['platz2']; ?> <option> 9 Marc Webber</option><?=$_POST['platz2']; ?> <option>10 Nico Rosberg</option><?=$_POST['platz2']; ?> </select> </td> </tr> <tr> <td width="50" align="center" height="35">3</td> <td width="275" align="center" height="35"> <select size="1" name="platz3" class="text"> <option> 1 Fernando Alonso</option><?=$_POST['platz3']; ?> <option> 2 Giancarlo Fisicella</option><?=$_POST['platz3']; ?> <option> 3 Kimi Räikkönen</option><?=$_POST['platz3']; ?> <option> 4 Juan Pablo Montoya</option><?=$_POST['platz3']; ?> <option> 5 Michael Schumacher</option><?=$_POST['platz3']; ?> <option> 6 Filipe Massa</option><?=$_POST['platz3']; ?> <option> 7 Ralf Schumacher</option><?=$_POST['platz3']; ?> <option> 8 Jarno Trulli</option><?=$_POST['platz3']; ?> <option> 9 Marc Webber</option><?=$_POST['platz3']; ?> <option>10 Nico Rosberg</option><?=$_POST['platz3']; ?> </select> </td> </tr> <!--ende nachricht-->
wählen kann.
Ich möchte es aber gerne so haben das man eine Meldung
ausgegeben bekommt, das man gleiche Einträge ausgewählt hat.
Oder aber das der Eintrag der im 1. Auswahlfeld selectiert ist
in den beiden anderen Auswahlfeldern blockiert ist.
Wie kann man dies realsieren?
Grüße von Sven
Kommentar