in reply to Re: Passing 'SELECT MULTIPLE' parameters and CGI
in thread Passing 'SELECT MULTIPLE' parameters and CGI

i do have it set to multiple
<select id="runs" name="runs" multiple="">
but thanks anyway.

Replies are listed 'Best First'.
Re^3: Passing 'SELECT MULTIPLE' parameters and CGI
by choroba (Cardinal) on Aug 17, 2010 at 15:02 UTC
    Oh, you are right, ok.

    Why are you transforming the output of the form with javascript? The form can send its data itself. You may also check the actual value of the runs variable in the javascript code by adding alert(runs) right after the assignment var runs = ....

      I wasn't using javascript originally, I changed to using it cos I couldnt get it to work using just the form.
      I can see the 'runs' variable is only set to one value in firebug.
      Ta for your time tho :)