On Sat, Sep 23, 2017 at 1:42 AM,
dealtek@gmail.com <
[email protected]>
wrote:
> Hi all,
>
> I am starting to work with Credit card processing and stripe
>
> I am working with their documentation...
>
>
https://stripe.com/docs/api#create_charge
>
> The code below will create a charge...
>
> Stripe Basic PHP question:
>
> from the example below... How do I display on the page, the result of the
> active charge just created in php?
>
> Q: is there some return response variable that I can echo in php?
>
> ---
>
> <?php
> require_once('./config.php');
>
> $token = $_POST['stripeToken'];
>
> $customer = \Stripe\Customer::create(array(
> 'email' => '
[email protected] <mailto:
[email protected]>',
> 'card' => $token
> ));
>
> $charge = \Stripe\Charge::create(array(
> 'customer' => $customer->id,
> 'amount' => 5000,
> 'currency' => 'usd'
> ));
>
> echo ??VAR??? - ??????? how can I show the return response variable ;
> ?>
>
>
> --
> Thanks,
> Dave - DealTek
>
dealtek@gmail.com
> [db-17]
>
> Hi Dave,
Looks like you are using Stripe's PHP Library (
https://github.com/stripe/stripe-php)
Looking at Basic Example (
https://github.com/stripe/stripe-php#getting-started)
You should "echo $charge;"
--
Regards,
Jigar Dhulla