in reply to Trying add a hyperlink problem

clear formatting might help you see the function was embedded in a double-quoted string, and was not interpolated as a function. try (untested)

$page .= p( { -style => "font-family: verdana; font-size: 10pt;" }, "Shipping and tax may be added to your order.\n" . "For estimated shipping and tax, see " . a( { -href => "../shiptax.htm" }, "Shipping and Tax Estimate" ) );

~Particle *accelerates*

Replies are listed 'Best First'.
Re: Re: Trying add a hyperlink problem
by b310 (Scribe) on Mar 03, 2003 at 21:51 UTC
    Hi.

    Thanks for the help. It worked.