John & Anne Kern
Class
of 1950 Home Page Photo Index Next picture

Date: November, 2003
Place: Cincinnati, Ohio
Occasion: Visit to son, Jay & family
Home town: Chicago, IL
#!/usr/bin/perl
# Copyright: 2000, Association of Alumni and Alumnae
# Author: Chia-Ying David Yang
# Date: Tuesday, February 22, 2000
use strict;
use Alumweb;
&PrintHeader;
##########
my $count = (-e "counter.txt")
? &ReadFile ("counter.txt") + 1
: 1;
&SaveFile ("counter.txt", $count);
print $count;