home *** CD-ROM | disk | FTP | other *** search
/ Web Designer 98 (Professional) / WebDesigner 1.0.iso / cgi2 / remote_host.pl < prev    next >
Encoding:
Perl Script  |  1996-06-04  |  376 b   |  11 lines

  1. #!/usr/bin/perl
  2. # Simple Remote Host Identification
  3. # Created by Matt Wright
  4. # Created on: 10/15/95        Last Modified on: 10/15/95
  5. # Version 1.0
  6. # This script should be used as a server side include.
  7. # <!--#exec cgi="http://your.host.xxx/cgi-bin/remote_host.pl"-->
  8.  
  9. print "Content-type: text/html\n\n";
  10. print "Hello and Welcome to My Page user from $ENV{'REMOTE_HOST'}\n";
  11.