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