This commit is contained in:
KANE LAZENI 2026-02-23 03:19:04 +00:00
parent 992ce80f62
commit f3357f0313

View File

@ -2,6 +2,7 @@
session_start(); session_start();
session_unset(); session_unset();
if (!isset($_GET['lg'])) { if (!isset($_GET['lg'])) {
afficherMessage("Paramètre langue absent de la requête!"); afficherMessage("Paramètre langue absent de la requête!");
} }
@ -179,6 +180,7 @@
} }
function afficherMessage($message) { function afficherMessage($message) {
/*
echo "<!DOCTYPE html> echo "<!DOCTYPE html>
<html lang='fr'> <html lang='fr'>
<head> <head>
@ -219,6 +221,8 @@
</body> </body>
</html>"; </html>";
exit(); exit();
*/
echo $message;
} }
?> ?>