On Mon, 31 Jan 2005 14:10:41 -0600, Joshua Lavin
<joshua at kingdomdesign.com> wrote:
> Our perl tag code for the discount is:
>
> $Session->{discount}{ALL_ITEMS} = '$s * ' . $discount;
>
You could try
$Session->{discount}{ALL_ITEMS} = 'sprintf("%.2f", $s * ' . $discount . ')';
Jeff