Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<?php // index.php
session_start();
if (isset($_GET['w'])) {
$_SESSION['w'] = $_GET['w'];
}
if (isset($_GET['h'])) {
$_SESSION['h'] = $_GET['h'];
}
if (count($_GET) > 0) {
// Aufruf sollte nur w und h in Session setzen
exit;
}
?>
<html>
<head>
<script type="text/javascript">
// <![CDATA[
window.onload = function()
{
var dummy = new Image();
dummy.src = "index.php?w=" + window.innerWidth
+ "&h=" + window.innerHeight;
}
// ]]>
</script>
</head>
<body>
<a href="./">Nach erstem Aufruf neu laden.</a>
<pre>
<?php print_r($_SESSION); ?>
</pre>
</body>
</html>