On Fri, 27 Jun 2003, Jamie Neil wrote:
> > No, you are assigning a new value to the cgi variables.
> >
> > Try this to stack em up:
> >
> > $CGI->{mv_search_field} = 'category';
> > $CGI->{mv_search_field} .= '\0inactive';
>
> OK - that makes sense. I am assuming that the \0 is the delimiter for
> stacked variables.
Yes, but you need to use double quotes:
"a\0b\0c"
Jon