<?php
// get contents of a file into a string
$filename = "/usr/local/something.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
echo array_shift(explode("***", wordwrap($contents, 200, "***, false)));
?>
![]()