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.
<form action="open_file.php" method="post">
<input type="text" name="file" />
<input type="submit" value="Öffnen" />
</form>
<?
$pfad = "PFAD"; // z.B. C:\Users\USERNAME\Desktop\
if(isset($_POST)) {
if($_POST['file'] > "") {
header("Location: ".$pfad.$_POST['file']);
}
}
?>
Pfade mit \ sind zwar für Windows korrekt, können unter Linux aber Probleme machen!