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

16 lines
445 B
PHP

<?php
session_start();
require_once "php/inc_fonctions.php";
require_once('php/inc_fx_panier.php');
$strNoPanier = $_REQUEST['no_panier'];
$intParticipant = $_REQUEST['acheteur'];
$strLangue = $_REQUEST['langue'];
$tabRetour = array();
fxMajCopieParticipantAcheteur($strNoPanier, $intParticipant, true);
$tabRetour['state'] = 'success';
$tabRetour['adresse'] = (fxShowAddress($strNoPanier, 'cart', $strLangue));
echo json_encode($tabRetour);