Files
keliopanel-v1/0.9.0/panel/resultat.php
2016-02-21 01:33:05 +01:00

63 lines
1.7 KiB
PHP
Executable File

<?php
/*
Copyright (C) 2007 Mercier Benjamin
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
session_start ();
// Inclusion du core
require ('system/core.php');
if ( isset($_SESSION['Resultat']) )
{
$Message = $_SESSION['Resultat'];
}
else
{
$Message = "Aucun message a afficher";
}
if ( isset($_SESSION['Lien']) )
{
$Lien = $_SESSION['Lien'];
}
else
{
$Lien = "Page.html";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" >
<title>panel.kelio.org : information</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body style="background-color: #ddd;">
<div style="margin: auto; width: 50%;">
<p class="error" style="margin: 100px; text-align: center; font-size: large;">
<img alt="stop" src="img/icons-panel/stop.png" /><br/><br/>
<?php echo $Message; ?>
<br/><br/>
<a style="font-size: small;" href="<?php echo $Lien; ?>">Retour à la page précédente</a>
</p>
</div>
</body>
</html>