16 lines
445 B
PHP
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); |