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.
<!-- download.php -->
<?php
$fileId = $_GET['fileId'];
if(is_numeric($fileId))
{
switch($fileId)
{
case 1:
header("Location: pfad/zur/datei.bla");
break;
case 2:
header("Location: pfad/zur/datei.bla");
break;
}
}
?>
<a href="download.php?fileId=1">Datei Hassenichtgesehen</a>