mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
17 lines
286 B
PHP
17 lines
286 B
PHP
|
<?php
|
||
|
require_once "sessions.inc.php";
|
||
|
?>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Sessions</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php
|
||
|
$_SESSION["Programmiersprache"] = "PHP";
|
||
|
$_SESSION["Sprachversion"] = 7;
|
||
|
?>
|
||
|
<p>Sessionvariablen wurden gesetzt!</p>
|
||
|
<p><a href="lesen-db.php">Weiter ...</a></p>
|
||
|
</body>
|
||
|
</html>
|