|
echo " These are names of those NOT CURRENT. ";
echo "This missing persons list is mostly made up of names of those we've ";
echo "NEVER found since BEFORE the 10 year reunion in 1983! ";
echo "If your have any updates on these people, please let us know. ";
echo "Last Updated: 6/25/03 ";
echo "Missing: ";
echo "";
echo "\n\n";
$missing_list = file("missing.txt");
for ( $i=0, $j=0; $i < count($missing_list); ++$i )
{
$temp = trim($missing_list[$i]);
echo "| $temp | \n";
if (++$j == 2)
{
echo " \n";
$j = 0;
}
}
echo " ";
echo "Deceased: ";
echo "";
echo "\n\n";
$deceased_list = file("deceased.txt");
for ( $i=0, $j=0; $i < count($deceased_list); ++$i )
{
$temp = trim($deceased_list[$i]);
echo "| $temp | \n";
if (++$j == 2)
{
echo " \n";
$j = 0;
}
}
echo " ";
echo " \n";
?>
Return to
Home Page |