Multiple Post Values In / Out

Is it not possible to send / receive multiple variables per POST/GET ?

WIth some help from zvineyard, we were able to figure this out!  :) 


You can pass input vars to post as an array:  


    Select color:
    Select color2:


Then parse them out on the imp…

  
      output.set(format(“Value[0]: %s Value[1]: %s”, value[0], value[1]));
      server.show(format(“Value[0]: %s Value[1]: %s”, value[0], value[1]));