I want to get the values of multiple select in second cgi which is passed by first cgi.I am using Teamsite::CGI_Lite.
If it was a single value $cgi -> {form}{field} is holding good.
$vari = $cgi -> {form}{field} works fine
But for condition where lang=Japanese〈=English〈=Chinese is passed
this is giving ARRAY(0x385fc0) as result.
@vari = $cgi -> {form}{'lang'} is not working.
Is there a function to get values if multiple select which is passed as GET method.
thanks