On Tue, Nov 04, 2003 at 12:58:58PM -0800, Richard Heintze wrote:
> After several hours I tracked it down to these line of
> code. The concantenation is failing suddenly!
> 
> my $hidden="<table><tr><td>";
> &FormElements(\$hidden...);
> 
> sub FormElements{
>   my $hidden = @_;

This sets $hidden to the number of elements in @_.

>   my $t1 = qq[<input type=text value=mumble>];
>   $$hidden .= $t1;

So this is a symbolic dereference (of $1, presumably, which is read-only).

Please post your real code. :-)

-- 
Steve

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to