mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 02:31:58 +01:00
26 lines
469 B
PHP
26 lines
469 B
PHP
<?php
|
|
session_start();
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title>Sessions</title>
|
|
</head>
|
|
<body>
|
|
<p>Programmiersprache:
|
|
<?php
|
|
if (isset($_SESSION["Programmiersprache"])) {
|
|
echo htmlspecialchars($_SESSION["Programmiersprache"]);
|
|
}
|
|
?>
|
|
</p>
|
|
<p>Sprachversion:
|
|
<?php
|
|
if (isset($_SESSION["Sprachversion"])) {
|
|
echo htmlspecialchars($_SESSION["Sprachversion"]);
|
|
}
|
|
?>
|
|
</p>
|
|
<p><a href="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>">Neu laden</a></p>
|
|
</body>
|
|
</html>
|