Write data to a Mysql database

nc67
New Community Member

Hello.
I have a problem.
I followed the instructions to insert a button on my site written in php.
During the verification of the transaction I would like to write the data on my mysql. How can I do ?
I did the tests with the script:

 

<script>

  paypal.Buttons({

    createOrder: function(data, actions) {

      return actions.order.create({

        purchase_units: [{

          amount: {

            value: '0.01'

          }

        }]

      });

    },

    onApprove: function(data, actions) {

      return actions.order.capture().then(function(details) {

        alert('Transaction completed by ' + details.payer.name.given_name);

        // Call your server to save the transaction

        return fetch('/paypal-transaction-complete', {

          method: 'post',

          headers: {

            'content-type': 'application/json'

          },

          body: JSON.stringify({

            orderID: data.orderID

          })

        });

      });

    }

  }).render('#paypal-button-container');

</script>

But I don't understand how to write to my database.
You can help me.
Thank you.
Nicolò

Login to Me Too
0 REPLIES 0

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.