View Single Post
Old 08-19-2003, 07:56 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,489
sde is on a distinguished road
if your email file, lets call it email.txt looked like this: where you have each email address on it's own line, .. then you can use the php script below.
PHP Code:
<?
$array 
file("email.txt");
$count=count($array);

echo 
"There are currently " $count " members on this mailing list.";
?>
__________________
Mike
sde is offline   Reply With Quote