alpha_full/admin/options/moyensL/grilleTarifaire/gt.reqUpML.php
2026-04-06 22:58:51 +02:00

15 lines
680 B
PHP
Executable File

<?php
$nomFicAppelant = basename(__FILE__);
if (!empty($theIdentifiant)) $theIdentifiant=addslashes ($theIdentifiant);
$thePwd=addslashes ($thePwd);
$reqUpdate="UPDATE `modeliv` SET `idCompte`='" .$theIdentifiant. "',pwdCompte='" .$thePwd. "' WHERE idModeLiv=" .$idMl. " ;";
$resConn='';
$resConn=$idPdo->query($reqUpdate);
if (isset($debug[2]) && $debug[2] == '1' ) { $debugMsg .= monDebug(2, ['reqUpdate' => $reqUpdate], 'gt.reqUpML.php');}
if ($resConn) {
$admMsg .= "&#160;Mise à jour identifiant effectuée avec succès !"; $admMsgClass='ok';
}
else {
$admMsg .= "&#160;Echec de la mise à jour identifiant " .$theName; $admMsgClass='ko';
}
?>