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

20 lines
471 B
PHP

<?php
session_start();
require_once('php/inc_functions.php');
require_once('php/inc_fx_messages.php');
require_once('php/inc_fx_excell.php');
$strAction = $_REQUEST['a'];
$intEvenement = $_REQUEST['e'];
$strReport = $_REQUEST['r'];
$strWhere = $_REQUEST['w'];
$strOrder = $_REQUEST['o'];
$strLangue = $_REQUEST['langue'];
switch ($strAction) {
case 'excel':
fxShowReport($intEvenement, $strReport, $strWhere, $strOrder, $strLangue, true);
break;
}