Files
ms1inscription-v5/ajax_confirmation.php
2026-05-13 09:43:32 -04:00

22 lines
518 B
PHP

<?php
session_start();
require_once "php/inc_fonctions.php";
require_once('php/inc_fx_panier.php');
$strNoPanier = $_REQUEST['no_panier'];
$strLangue = $_REQUEST['lng'];
$tabRetour = array();
$tabRetour['state'] = 'error';
//$strNoPanier='pan_67322e7579bb2';
$strNoCommande = fxMajCommande($strNoPanier, $strLangue, true);
if ($strNoCommande !== false) {
if ($strLangue == 'fr') {
$tabRetour['state'] = 'Envoyé';
} else {
$tabRetour['state'] = 'Sent';
}
}
echo json_encode($tabRetour);