<?php// open and split the blog into an array of blog entries..if (is_readable($filename)) { $file_contents = @implode('', file($filename)); }$whole_blog = explode('<!--*end*-->', $file_contents); ?>