Created
February 6, 2014 23:29
-
-
Save andrewpthorp/8854683 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The following would create a customer, subscribe them to your penny plan, and cost $1.00/month. | |
$customer = Stripe_Customer::create(array( | |
"card" => $token, | |
"email" => $email_to, | |
"description" => $planId.": ".$somiiPlan." plan.", | |
"plan" => "penny_plan", | |
"quantity" => 100) | |
); | |
// The following would create a customer, subscribe them to your penny plan, and cost $25.00/month. | |
$customer = Stripe_Customer::create(array( | |
"card" => $token, | |
"email" => $email_to, | |
"description" => $planId.": ".$somiiPlan." plan.", | |
"plan" => "penny_plan", | |
"quantity" => 2500) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment