in reply to Re: Value Pair Assignmentin thread Value Pair Assignment
param does not take two arguments. It takes a list of key/value pairs. Read the documentation next time.
$tmp->param( foo => 'bar', baz => 'quux' ); # or $tmp->param(%pairs); [download]