芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/ProZigzagbus Web Admin 1.2/flutterwave/pay.php
query("SELECT * FROM `tbl_payment_list` where id=7")->fetch_assoc(); $kk = explode(',',$kb['attributes']); if(isset($_POST['email'])) { $email = $_POST['email']; $amount = $_POST['amount']; //* Prepare our rave request $request = [ 'tx_ref' => time(), 'amount' => $amount, 'currency' => 'NGN', 'payment_options' => 'card', 'redirect_url' => 'https://prozigzagbus.cscodetech.cloud/flutterwave/process.php', 'customer' => [ 'email' => $email, 'name' => 'Zubdev' ], 'meta' => [ 'price' => $amount ], 'customizations' => [ 'title' => 'Paying for a sample product', 'description' => 'sample' ] ]; //* Ca;; f;iterwave emdpoint $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.flutterwave.com/v3/payments', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => json_encode($request), CURLOPT_HTTPHEADER => array( 'Authorization: Bearer '.$kk[0], 'Content-Type: application/json' ), )); $response = curl_exec($curl); curl_close($curl); $res = json_decode($response); if($res->status == 'success') { $link = $res->data->link; header('Location: '.$link); } else { echo 'We can not process your payment'; } } ?>