3 Commits

Author SHA1 Message Date
f6398c5035 MSIN-4378 2026-05-27 10:49:07 -04:00
025e145f6f Merge branch 'dev' of http://git.progiweb.ca/stephan/ms1inscription-v5 into dev 2026-05-27 10:48:18 -04:00
d006d75e53 ajout switch qrcode MSIN-4376 2026-05-27 10:46:01 -04:00

View File

@ -624,10 +624,11 @@ function fxupload_excel_fnq($mem_fichier) {
if ($counter != 0) {
// $sqlInsert = "INSERT INTO inscriptions_tq set tq_nom='" . $GLOBALS['db']->fxEscape(htmlentities(trim( trim($r[0])), ENT_QUOTES, 'UTF-8')) . "',tq_prenom='" . $GLOBALS['db']->fxEscape(htmlentities(trim($r[1]), ENT_QUOTES, 'UTF-8')) . "',tq_no='" . $r[2] . "',tq_adhesion='" . $r[3] . "',tq_naissance='" . $r[4] . "',tq_echeance='" . $r[5] . "',tq_sexe='" . $r[6] . "',tq_timeupdate=now()";
//print_r($r);
print_r($r);
$newDate = date("Y-m-d", strtotime($r[7]));
//echo("<br>");
$sqlInsert = "INSERT INTO inscriptions_fnq set tq_no='" . $r[3] . "',tq_naissance='" . $newDate . "',tq_timeupdate=now()";
$sqlInsert = "INSERT INTO inscriptions_fnq set tq_nom='" . $r[1] . "',tq_prenom='" . $r[2] . "',tq_sexe='" . $r[3] . "', tq_no='" . $r[3] . "',tq_naissance='" . $newDate . "',tq_timeupdate=now()";
$qryInsert = $GLOBALS['db']->fxQuery($sqlInsert);
}