Initial commit for radiantprestation project

This commit is contained in:
2026-01-06 08:29:33 +00:00
commit 89481e47af
2578 changed files with 580558 additions and 0 deletions

23
flexcodeOLD/messages.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
include 'include/global.php';
include 'include/function.php';
if (isset($_GET['msg']) && !empty($_GET['msg']))
{
echo $_GET['msg'];
}
elseif (isset($_GET['user_name']) && !empty($_GET['user_name']) && isset($_GET['time']) && !empty($_GET['time']))
{
$user_name = $_GET['user_name'];
$time = date('Y-m-d H:i:s', strtotime($_GET['time']));
echo $user_name." identifié avec succès le ".date('d/m/Y H:i:s', strtotime($time));
}
else
{
$msg = "Paramètres ivalides..";
echo "$msg";
}
?>