Voll Upload SGD Fachinformatiker PHP

This commit is contained in:
2026-06-03 13:46:32 +00:00
parent 1256ec2190
commit 84a568d89c
265 changed files with 9961 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Session</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<?php
if (!isset($_SESSION['userid'])) {
$_SESSION['zeit'] = time();
$_SESSION['login'] = true;
$_SESSION['userid'] = "Willi";
}
?>
<h1>Starten einer Sitzung</h1>
<a href="sitzung4.php">Weiter</a>
</body>
</html>