Thanks Kirk,
I got back here as fast as I could.
Thanks to a few other kind folks, this problem has been solved and delivered to me in whole.
User accesses .htpasswd protected page. PHP checks external, unrelated file for an instance of the REMOTE_USER name. If found, it displays instructional greeting 1. If not found, it prints instructional greeting 2.
Solution below for others to benefit from.
$file="/path and file name";
$f = 0;
$contents = file($file);
foreach($contents as $key => $val) {
if(strstr($val, $REMOTE_USER)) {
$f = 1;
}
}
if($f) {
print "Instructional Greeting ONE<P>";
}
else {
print "Instructional Greeting TWO<P>";
}
Thanks go to several different folks. Delivery of final, complete solution was by freddydoesphp -- phpworld message board.