Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
session_start();
define ("TIMEOUT", 600);
if (isset($_SESSION['loggedin']):
if (isset($_SESSION['lastaccess']) && (($_SESSION['lastaccess'] + TIMEOUT) > time())):
$_SESSION['lastaccess'] = time();
//login ok
else:
unset($_SESSION['loggedin']);
unset ($_SESSION['lastaccess']);
echo "You're session has expired. Please login again";
display_login_form();
endif;
else:
echo "Please login";
displayloginform();
endif;