';
}
if(!fwrite($txtfile, str_replace(PHP_EOL, '
', htmlspecialchars($_POST['posttxt'])) . PHP_EOL)) {
echo 'File write error.
';
}
fclose($txtfile);
}
if(!$txtfile = fopen($resdir . 'text.txt', 'r')) {
echo '
Nothing here.';
}
while ($line = fgets($txtfile)) {
echo '
' . $line . '
' . PHP_EOL;
}
fclose($txtfile);
?>