Initial commit for radiantprestation project
This commit is contained in:
23
flexcodeOLD/messages.php
Normal file
23
flexcodeOLD/messages.php
Normal 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";
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user