mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 02:31:58 +01:00
29 lines
459 B
PHP
29 lines
459 B
PHP
|
<html>
|
||
|
<head>
|
||
|
<title>Cookies</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table>
|
||
|
<tr><th>Name</th><th>Wert</th></tr>
|
||
|
<tr><td>Programmiersprache</td><td>
|
||
|
<?php
|
||
|
echo htmlspecialchars(
|
||
|
$_COOKIE["Programmiersprache"]);
|
||
|
?>
|
||
|
</td></tr>
|
||
|
<tr><td>Sprachversion</td><td>
|
||
|
<?php
|
||
|
echo htmlspecialchars(
|
||
|
$_COOKIE["Sprachversion"]);
|
||
|
?>
|
||
|
</td></tr>
|
||
|
<tr><td>Session</td><td>
|
||
|
<?php
|
||
|
echo htmlspecialchars(
|
||
|
$_COOKIE["Session"]);
|
||
|
?>
|
||
|
</td></tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|