#!/usr/bin/perl # Michael Tartaglia # 10 April 2002 # Checking for a cookie use CGI ':standard'; require template; my $base = "http://storm.cis.fordham.edu/~tartagli/"; welcomeMESG() if ($ENV{'HTTP_COOKIE'} =~ /$base/); sub welcomeMESG { print < Welcome back!
Click here to read the last cookie saved
from this site to your machine.

END }