http://www.perlmonks.org?node_id=125193


in reply to Re: Re: CGI.pm file uploads in very generic script
in thread CGI.pm file uploads in very generic script

The latter. ["junk","$something"];

If you want to turn that into the first (ie, one big concatenated string), you can do this:

$q->param("foo",join("",$q->param("foo")));

Cheers,
Paul