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

23 lines
946 B
PHP
Executable File

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