alpha_full/pages/panier/_formOptions/reqOpt/reqSelectLibCA.php
2026-04-06 22:58:51 +02:00

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++;
}
?>