OWE/archiv.php
2020-05-07 22:27:26 +02:00

20 lines
377 B
PHP

<html>
<head>
<title>OWE Archiv</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>One Word Each Archiv</h1>
<p><a href="./">Startseite</a></p>
<p class="sentences">
<?php
$filename = $_REQUEST["file"];
$content = file_get_contents("./data/".$filename) or die("ungültiger Dateiname");
print($content);
?>
</p>
</body>
</html>