K2KO has asked for the wisdom of the Perl Monks concerning the following question:

I'm not using a SSL type of server, but need to offer some buttons to go to Paypal. Is there a Perl Module that I can grab to create the buttons, pass the information to PayPal but not require a secure socket?

Replies are listed 'Best First'.
Re: Paypal Module
by b10m (Vicar) on Jan 15, 2004 at 17:34 UTC

    There is Business::PayPal, which seems to have a function called button()

    Returns the HTML for a PayPal button. It takes a large number of parameters, which control the look and function of the button, some of which are required and some of which have defaults.
    --
    b10m
      That's the ticket! Thanks.