Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
//This will start a session
session_start();
$username = $_SESSION['username'];
$password = $_SESSION['password'];
//Check do we have username and password
if(!$username && !$password){
echo "<a href=login.php>Login</a> | <a href=register.php>Register</a>";
}else{
echo "Welcome ".$username." <a href=logout.php>Logout</a>";
}
?>