Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<center>
<?php
session_start ();
if (!isset ($_SESSION["a"]))
{
header ("Location: login.php");
}
?>
</center>
<?php
include ("checkuser.php");
?>
<html>
<head>
<title>
tempsave.php
</title>
</head>
<body>
Dies ist Username:<?php print $_SESSION["a"]; ?><br>
Dies ist Passwort:<?php print $_SESSION["p"]; ?><br>
Dies ist AccessRead:<?php print $_SESSION["ar"]; ?><br>
Dies ist AccessUpdate:<?php print $_SESSION["au"]; ?>