22 lines
518 B
PHP
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); |