<?php
require_once('../vendor/autoload.php');
if (!isset($_POST["cart_payload"])) {
echo "PAYLOAD NOT SET";
}
$items = json_decode($_POST["cart_payload"], true);
$line_items = array();
foreach ($items as $item) {
$line_items[] = array(
$target = 'images/';
$target = $target . basename( $_FILES['image']['name'])
'name' => $item["title"],
'image' => $FILES["image"],
'amount' => $item["price"]*100,
'currency' => 'gbp',
'quantity' => $item["quantity"],
);
}
// Set your secret key: remember to change this to your live secret key in production
// See your keys here: https://dashboard.stripe.com/account/apikeys
\Stripe\Stripe::setApiKey('sk_test_Bv1CxPqIn7LFeZ8MGvUKHu0h00rFUx2JlI');
$session = \Stripe\Checkout\Session::create([
'payment_method_types' => ['card'],
'line_items' => $line_items,
'success_url' => 'https://skatelandnottingham.co.uk',
'cancel_url' => 'https://skatelandnottinghamk.co.uk/events/',
]);