daily pastebin goal
7%
SHARE
TWEET

Untitled

a guest Mar 31st, 2015 5 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.   require_once('php/config.php');
  3.  
  4.   $token  = $_POST['stripeToken'];
  5.  
  6.   $customer = \Stripe\Customer::create(array(
  7.       'email' => 'customer@example.com',
  8.       'card'  => $token
  9.   ));
  10.  
  11.   $charge = \Stripe\Charge::create(array(
  12.       'customer' => $customer->id,
  13.       'amount'   => 5000,
  14.       'currency' => 'usd'
  15.   ));
  16.  
  17.   echo '<h1>Thank you, and congratulations!</h1>';
  18. ?>
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. OK, I Understand
 
Top