>>>>> "Philip" == Philip Peeters <[EMAIL PROTECTED]> writes:
Philip> %newdata = ();
Philip> $newdata{$TAG} = $co->param('account');
Philip> $newdata{$TAG}[0] = $co->param('initsearch');
Philip> $newdata{$TAG}[1] = $co->param('team');
Philip> $newdata{$TAG}[2] = $co->param('website');
That can't work. You can't have $newdata{$TAG} simultaneously
be a data value *and* an arrayref.
That first one might need to be $newdata{$TAG}[0] then instead.
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!