Ah. Yes I understand. Thanks for the great help.
This is what I did.
<head>
<title>Return file to HTML</title>
</head>
<body>
The file will appear below:<br>
<?php $text_array = file("testfile.txt");
$text_string = implode("",$text_array);
echo $text_string;
?>
</body>
Maybe I did something realy wrong I don't know, but it does not work.
Could somebody correct me?