|
 |
|
$filelocation = "data/besluit.txt";
if (!file_exists($filelocation)) {
echo "Kan tekst file niet vinden, neem contact op met de administrator!";
}
else {
$newfile = fopen($filelocation,"r");
$content = fread($newfile, filesize($filelocation));
fclose($newfile);
}
$content = stripslashes($content);
$content = htmlentities($content);
$content = nl2br($content);
echo $content;
?>
|
|
 |
|
|