#!/usr/bin/perl
# Simple Remote Host Identification
# Created by Matt Wright
# Created on: 10/15/95        Last Modified on: 10/15/95
# Version 1.0
# This script should be used as a server side include.
# <!--#exec cgi="http://your.host.xxx/cgi-bin/remote_host.pl"-->

print "Content-type: text/html\n\n";
print "Hello and Welcome to My Page user from $ENV{'REMOTE_HOST'}\n";
