oliver: Mehrfachauswahl

Hallo,

ich versuche über ein Formular mit Mehrfachauswahl diese Daten an ein PHP Script zu übergeben. Ich wähle zwei Punkte aus, aber ich bekomme nur ein Punkt übergeben.

z.B.
print "<TR>";
  print "<TD align=right><B>Prio</B></TD>";
  print "<TD>";
  print "<select NAME="prio" size=3 style="width:270" multiple>";
  print "<option>A</option>";
  print "<option>B</option>";
  print "<option>C</option>";
  print "</select>";
  print "</TD>";
print "</TR>";

Hier z.B bekäme ich nur Punkt B, obwohl ich A Un B markiert habe.

Muss ich dabei noch iregendwas beachten????

Gruss
Oliver

  1. hi,

    Muss ich dabei noch iregendwas beachten????

    http://php-faq.de/q/q-formular-select-multiple.html

    gruß,
    wahsaga

    --
    "Look, that's why there's rules, understand? So that you _think_ before you break 'em."
    1. Danke,

      für die schnelle Antwort.
      Das Leben könnte so einfach sein. Ich hab bei HTML geschaut.
      Nochmals Danke

      Oliver