Skip to content
Snippets Groups Projects
Commit 017fba74 authored by Eric Laufer's avatar Eric Laufer
Browse files

1.1

parent 26044b8a
No related merge requests found
<?php require_once ('lib/layout.lib.php'); ?>
<html>
<head>
<title>..:: Wartungsmodus::..</title>
<meta name="Content-language" content="DE">
<meta name="Page-type" content="Nicht Gewinnorientiert">
<meta name="Robots" content="INDEX,FOLLOW">
<link rel="stylesheet" href="/css/main.css" type="text/css">
</head>
<body topmargin="0" leftmargin="0">
<?php
// Variabeln
$filename = 'lib/texte/wartung.txt';
// Datei auslesen
$fp = fopen ($filename, "r");
$inhalt = fread ($fp, filesize ($filename));
fclose ($fp);
$inhalt = str_replace('\\', '', $inhalt);
?>
<table width="500" align="center" height="100%">
<tr>
<td height="100%" align="center" valign="middle">
<?php
head("Diese Seite ist im Wartungsmodus");
echo nl2br($inhalt);
foot();
?>
</td>
</tr>
</table>
</body>
</html>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment