Skip to content

Instantly share code, notes, and snippets.

Created December 4, 2012 19:53
Show Gist options
  • Save anonymous/4207997 to your computer and use it in GitHub Desktop.
Save anonymous/4207997 to your computer and use it in GitHub Desktop.
crete
<?php$card = Balanced\Marketplace::mine()->createCard(
'',
'',
'',
'',
$first_name.' '.$last_name,
$card_number,
$security_code,
$expiration_month,
$expiration_year);
$buyer = Balanced\Marketplace::mine()->createBuyer(
$email,
$card->uri);
$amount_in_cents = $price * 100;
$debit = $buyer->debit($amount_in_cents, $garment); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment