15 lines
331 B
PHP
15 lines
331 B
PHP
<?php
|
|
require_once('php/inc_fonctions.php');
|
|
require_once('php/inc_fx_reserver.php');
|
|
|
|
$intEpreuve = trim(strtolower($_GET['epr_id']));
|
|
$strNaissance = trim(strtolower($_GET['txt_date']));
|
|
$tabPrix = fxGetPrixParticipant($intEpreuve, $strNaissance);
|
|
|
|
if ($tabPrix != null)
|
|
$valid = 'true';
|
|
else
|
|
$valid = 'false';
|
|
|
|
echo $valid;
|
|
?>
|