<code>
<?php

$fh = fopen('/home/phorg/public_html/three/index.php', 'r'); 
$contents = fread($fh, filesize('/home/phorg/public_html/three/index.php')); 
fflush($fh);
fclose($fh);
echo extract_unit($contents,'<!--blurb-cut-in-->','<!--blurb-cut-out-->');

#$body=explode('<p>',extract_unit($contents,'<!--scribebody-cut-in-->','<!--scribe-cut-out-->'));

#foreach ($body as $t) {
# $x = str_word_count($t);
# if ($x > 0) {
#  if ($x < 300 ) { echo '<p>'.$t; }
#  else { 
#   echo '<p>';
#   $s=explode(' ',$t);
#   for ($i = 0; $i <= 300; $i++) { echo $s[$i].' '; }
#   echo '</p>';
#   break;
#  }
# }
#}
?>
</code>