Title: [PHP] php
Author: sindeus
Pastebin link: http://pastebin.com/QPS8sUJN
First Edit: Friday 2nd of October 2015 06:16:05 PM CDT
Last Edit: Friday 2nd of October 2015 06:16:05 PM CDT
';
}
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);
?>