<?php$lines = file('heroes.txt');$result = array_reverse($lines);foreach ($result as $line) echo $line;
<?$handle = fopen ("heroes.txt", "ab"); $date=date('H:i'); $title = trim( $_POST['title']); $body = trim( $_POST['body']); ?><?$body = str_replace("\r\n", '<br>', $body);$text = "$date<b> $title <br/></b>$body<br/><hr/>";if ( fwrite ($handle,$text) == TRUE)fclose ($handle);
$file = 'heroes.txt';$title = trim($_POST['title']);$body = nl2br(trim($_POST['body']));file_put_contents($file, date('H:i')."<b> {$title} <br/></b>{$body}<br/><hr/>\n", FILE_APPEND | LOCK_EX);
$lines = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);for($i = count($lines); $i >= 0; $i--) echo $lines[$i];