>
> That'll work but you'll end up with an extra ampersand on the
> end. Here map()
> and join() are your friends:
>
> [- $http_headers_out{'Location'} = q(edit.html?) . join('&',
> map({$_=$fdat{$_}}
> keys %fdat)) -]
>
Yes, that's more elegant, but is it possible that you forgot a qq before
{$_=$fdat{$_}}?

->  map(qq{$_=$fdat{$_}} keys %fdat)

Gerald

Reply via email to