alpha_full/pages/accueil/accueil.reqSelect.messCom.php
2026-04-06 22:58:51 +02:00

24 lines
1010 B
PHP
Executable File

<?php
$nomFicAppelant = basename(__FILE__);
$tabResult=array();
// ---------------------------------------------------
// recherche des messages a afficher
// ---------------------------------------------------
$reqSelect="SELECT * from languenav WHERE num=100 and variable='msgAccueil' ;";
if (isset($debug[2]) && $debug[2] == '1' ) { $debugMsg .= monDebug(2, ['Requete select' => $reqSelect], 'accueil.reqSelect.messCom.php');}
$resConn='';
$resConn=$idPdo->query($reqSelect);
if ($resConn) {
while ($tabResult = $resConn->fetch(PDO::FETCH_ASSOC)) {
$afficherMsgCom=$tabResult['afficher'];
$messTab=$tabResult[$lg];
$icoTab=$tabResult['imgPt' .$lg];
$titleTab=$tabResult['title' .$lg];
$styleMsgCom=$tabResult['style'];
if (isset($debug[2]) && $debug[2] == '1' ) { $debugMsg .= monDebug(2, [ 'afficherMsgCom' => $afficherMsgCom, 'messTab' => $messTab, 'icoTab' => $icoTab, 'titleTab' => $titleTab, 'styleMsgCom' => $styleMsgCom
], ''); }
}
}
?>