daily pastebin goal
7%
SHARE
TWEET

Untitled

a guest May 30th, 2014 227 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.       'billing_name' => $_POST['stripeBillingName'],
  5.       'billing_address' => $_POST['stripeBillingAddressLine1'],
  6.       'billing_postCode' => $_POST['stripeBillingAddressZip'],
  7.       'billing_City' => $_POST['stripeBillingAddressCity'],
  8.       'billing_Country' => $_POST['stripeBillingAddressCountry'],
  9.       'shipping_name' => $_POST['stripeShippingName'],
  10.       'shipping_address' => $_POST['stripeShippingAddressLine1'],
  11.       'shipping_postCode' => $_POST['stripeShippingAddressZip'],
  12.       'shipping_City' => $_POST['stripeShippingAddressCity'],
  13.       'shipping_Country' => $_POST['stripeShippingAddressCountry']      
  14.   ));
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