Passing custom variables to paypal IPN

后端 未结 6 1915
谎友^
谎友^ 2020-12-25 13:17

I am trying to pass custom variables to paypal IPN. I can manage to pass one variable. But i don\'t know how to pass multiple variables.

My Process is something like

6条回答
  •  猫巷女王i
    2020-12-25 14:13

    Yes, you can! You can use 'custom' variable and add in your form

    
    

    And in your IPN.php:

    $custom = $_POST['custom'];
    

    And extract the variables from string

提交回复
热议问题