Re: [PHP] formular multiple select trouble

2001-10-02 Thread Iván Milanez Castellanos
Sebastian: if I remember correctly if you use a multiple selection field on a page when you submit the form the contents of the selected items on the field are sent via a comma delimited string, so you would just have to do $Array=split(",", $String) to retrieve all of the selected values of the f

Re: [PHP] formular multiple select trouble

2001-10-02 Thread Jason G.
Give the select tag an ID. You can then reference the element by its ID. alert(aname.value); -Jason Garber IonZoft.com At 01:25 PM 10/2/2001 +0200, Sebastian wrote: >Hi all > >If i use multiple select fields in a from >i use name[] to access it in php afterwards > >test1 >test2 > > >