Skip to content

Instantly share code, notes, and snippets.

@tcope25
Created October 7, 2014 02:58
Show Gist options
  • Save tcope25/c84953454ed02be10bc3 to your computer and use it in GitHub Desktop.
Save tcope25/c84953454ed02be10bc3 to your computer and use it in GitHub Desktop.
$customer = Stripe_Customer::create(array(
'email' => $_POST['email'],
'description' => $_POST['first-name'] . " " . $_POST['last-name'],
'card' => $_POST['stripeToken'],
'plan' => 'wh_15'
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment