phpbar.de logo

Mailinglisten-Archive

Re: [php] <select multiple> auswerten
Archiv Mailingliste php_(at)_infosoc.uni-koeln.de

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [php] <select multiple> auswerten



Alexander Schott <alexander.schott_(at)_gmx.de> wrote:
> Hi, ich möchte werte aus
> 
> 
> <FORM name="ads" action="selectmultiple.phtml" method="post">
> <select name="temp" size=5 multiple>
> <option>1
> <option>2
> <option>3
> <option>4
> </select>
> </FORM>
> 
> auswerten
> 
> <?echo $temp>
> 
> liefert aber immer nur den grössten wert!
> 
> Any Suggestions?

wie wärs mit:
<select name="temp[]" size=5 multiple>
<option value="one">1</option>
<option value="two">2</option>
<option value="three">3</option>
<option value="four">4</option>
</select>

dann enthält das array (!!!) $temp die jeweils ausgewälten werte (values)

Gruss
  Domas
-- 
"Jung, dynamisch, erfolglos" - Bernd Nester (Lehrer)

Home | Main Index | Thread Index

php::bar PHP Wiki   -   Listenarchive