Help for this page

Select Code to Download


  1. or download this
    return (a ({-href => $url. "?choice=checkout"},
    
  2. or download this
    sub get_checkout_link
    {
    ...
        ($url = "https://www.addr.com/~summitwe/cgi-bin/pet_shop.cgi") =~ 
    +s/^http:/https:/i;
        return (a ({-href => $url. "?choice=checkout"}, img ({-src => "../
    +images/checkout.jpg",  -border => "0", escapeHTML ($label)})));
    }
    
  3. or download this
    elsif ($choice eq "checkout")        # customer is ready to check out
    {
        $page .= display_billing_form ($dbh, $cart_ref);
    }
    
  4. or download this
    sub display_billing_form
    {
    ...
    
        return ($page);
    }