REGLEMENT DE VOTRE FACTURE PAR FLOOZ
[insert_php]
$pgg_api_url = ‘http://paygateglobal.com/api/v1/pay’;
$amount = $_POST[‘amount2’];
$pgg_curl_init = curl_init($pgg_api_url);
$pgg_auth_token = $_POST[‘auth_token’];
$pgg_phone_number =$_POST[‘phone_number’];
$pgg_amount = $_POST[‘amount’];
$pgg_description = $_POST[‘description’];
$pgg_identifier = $_POST[‘identifier’];
if($amount!=””){
$pgg_amount = $amount;
}
//ici
[/insert_php]