<code>
<div class="side">
<small>
<!-- Take the committee list and print it out in colors -->  
<?php
$fh = fopen('/home/phorg/public_html/comlist/index.html', 'r'); 
$contents = fread($fh, filesize('/home/phorg/public_html/comlist/index.html')); 
fflush($fh);
fclose($fh);
$between=extract_unit($contents,'<!-- blog-cut-in -->','<!-- blog-cut-out -->');
// do some text replacement
$original = array('<p>','::NA','</p>');
$replacement = array('','::&nbsp;','<br />');
$newcontent  = str_replace($original, $replacement, $between);

$members = explode('<br />', $newcontent);

foreach ($members as $i) {
$k = explode('::',$i);
echo '<font color=red>'.$k[0].'</font><br />';
echo '<font color=#444>'.$k[1].'</font><br />';
if (stripos($k[2],'nbsp') === false) { echo '<i>'.$k[2].'</i><br />'; };
if (stripos($k[3],'nbsp') === false) { echo '<a href="mailto:'.$k[3].'">'.$k[3].'</a><br />'; };
if (stripos($k[4],'nbsp') === false) { echo '<font color=green>'.$k[4].'</font><br />'; };
echo '<hr size=1 color=#ccc>';
}
?>
</div>
</code>