13 lines
263 B
PHP
13 lines
263 B
PHP
<?php
|
|
session_start();
|
|
|
|
require_once "php/inc_functions.php";
|
|
require_once "php/inc_fx_messages.php";
|
|
|
|
$strTable = $_REQUEST['t'];
|
|
$intId = $_REQUEST['id'];
|
|
$tabRetour = array();
|
|
|
|
$tabRetour = fxUpdateInfosPanier($strTable, $intId);
|
|
|
|
echo json_encode($tabRetour); |