<?php
// Variabeln
$filename = 'lib/texte/impressum.txt';
// Datei auslesen
$fp = fopen ($filename, "r");
$inhalt = fread ($fp, filesize ($filename));
fclose ($fp);
$inhalt = str_replace('\\', '', $inhalt);

head("Impressum");
    echo nl2br($inhalt);
foot();