20 lines
377 B
PHP
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>
|