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.
<?php
session_start();
if (!array_key_exists('foo', $_SESSION))
{
$_SESSION['foo'] = 1;
}
else
{
$_SESSION['foo'] ++;
}
print '<html>
<head>
<meta http-equiv="refresh" content="10; test_refresh.php">
</head>
<body>
';
print $_SESSION['foo'];
print '
</body>
</html>';
?>