daily pastebin goal
7%
SHARE
TWEET

Untitled

a guest May 30th, 2014 220 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   $customer = Stripe_Customer::create(array(
  2.       'email' => $_POST['stripeEmail'],
  3.       'card'  => $token,
  4.       'name' => $_POST['stripeBillingName'],
  5.       'address_line1' => $_POST['stripeShippingAddressLine1'],
  6.       'address_zip' => $_POST['stripeShippingAddressZip'],
  7.       'address_city' => $_POST['stripeShippingAddressCity'],
  8.       'address_country' => $_POST['stripeShippingAddressCountry'],    
  9.   ));
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