File: /home/f/r/e/frenchy/refonte2023/wordpress/evenements/admin/welcome.php
<?php
require_once('_ident.php');
setlocale (LC_TIME, 'fr_FR.utf8','fra');
$LibJour = strftime("%A");
$Jour = strftime("%d");
$Mois = strftime("%B");
$Annee = strftime("%Y");
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
echo '<html xmlns="http://www.w3.org/1999/xhtml">';
echo '<title>Console d\'administration</title>';
echo '<head>';
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
echo '<link href="styles/styles.css" rel="stylesheet" type="text/css">';
echo '</head>';
echo '<body>';
echo '<br/><br/><br/><br/><br/>';
echo '<div class="main">';
echo '<h1><center>Console d\'administration</center></h1>';
echo '<br/><br/>';
echo '<div class="box">';
echo '<h1><center>Bonjour, et bienvenue, nous sommes le '.$LibJour .' '.$Jour.' '.$Mois.' '. $Annee.'</center></h1>';
echo '<br/>';
echo '<h3><center>'.$_SERVER["SERVER_NAME"].'</center></h3>';
echo '<br/><br/>';
echo '<span class="message-bas-gauche">Module V'.$versionBCK.'</span>';
echo '<span class="message-bas-droite">Heure du serveur '.date("H").'H'.date("i").'</span>';
echo '</div>';
echo '</body>';
echo '</html>';
?>