17 lines
678 B
PHP
Executable File
17 lines
678 B
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
|
|
// ---------------------------------------------------
|
|
// champs dynamiques libelles
|
|
// ---------------------------------------------------
|
|
$reqSelect="SELECT * FROM `calibdyn` WHERE idLg='" .$lg. "';";
|
|
if (isset($debug[2]) && $debug[2] == '1' ) $debugMsg .=monDebug(2,['reqSelect' => $reqSelect],'reqSelectLibCA.php');
|
|
$connLibDyn=$idPdo->query($reqSelect);
|
|
$nlib=0;
|
|
while ($resLibDynTab=$connLibDyn->fetch(PDO::FETCH_ASSOC)) {
|
|
$libDynNom[$nlib]=$resLibDynTab['libelleCaDyn'];
|
|
if (isset($debug[2]) && $debug[2] == '1' ) $debugMsg .=monDebug(2,['<br>libDynNom[$nlib]' => $libDynNom[$nlib] ],'');
|
|
$nlib++;
|
|
}
|
|
|
|
?>
|