SHARE
TWEET
Untitled
a guest
Feb 28th, 2018
96
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- <?php
- require_once("---PATH-TO-STRIPE-LIBRARY---");
- // Set your secret key: remember to change this to your test secret key in this situation
- // See your keys here: https://dashboard.stripe.com/account/apikeys
- \Stripe\Stripe::setApiKey("ENTER_YOUR_SK_HERE");
- // Token is created using Checkout or Elements!
- $stripeData = $_POST;
- /*
- $stripeData will look like this:
- Array (
- [stripeToken] => "tok_1C0a0wFqfn6NNRoaLYKlxjWR"
- [stripeTokenType] => "card"
- [stripeEmail] => "test@test.com"
- )
- */
- // Get the payment token ID submitted by the form:
- $token = $stripeData['stripeToken'];
- // if there's no token you might want to show an error here
- // otherwise try process the charge.
- // Try charge the card token:
- try{
- $charge = \Stripe\Charge::create(array(
- "amount" => 5000,
- "currency" => "GBP",
- "description" => "Special Fling Trophy Sponsorship £50.00",
- "source" => $token,
- )
- );
- }catch(\Exception $e){
- // handle the exception and show an error to the user
- }
- ?>
- <html>
- <head>
- <script src="https://checkout.stripe.com/checkout.js"></script>
- </head>
- <body>
- <form action="" method="POST">
- <script
- src="https://checkout.stripe.com/checkout.js" class="stripe-button"
- data-key="ENTER_YOUR_PK_HERE"
- data-amount="5000"
- data-currency="GBP"
- data-name="Newton Stewart Traditional Music Festival Association"
- data-description="Special Fling Trophy Sponsorship £50.00"
- data-image="https://stripe.com/img/documentation/checkout/marketplace.png"
- data-locale="auto">
- </script>
- </form>
- </body>
- </html>
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
