1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
|
<?php
@session_start();
$uname = $_SESSION["name"];
$job = $_SESSION["job"];
include("checkuser.php");
?>
<html>
<head>
<title>Interne Seite</title>
<link rel="stylesheet" type="text/css" href="stylelogin.css">
</head>
<body><?php
echo "Hallo " .$uname . "!
<br> Du bist $job.
<br>
<a href='logout.php'>Logout</a>";?>
</body>
</html> |