#!/usr/bin/perl -w
#!Perl/bin/perl.exe -w
#!C:/cygwin/bin/perl.exe -w
#*****************************************************************************
#
# Filename: WorkoutTracker.pl
#
# CVS Revision: $Revision: 1425 $
#
# Description:  This perl CGI script reads the EXERCISE logs databases.
#       It is secured by using the REMOTE_USER environment variable.
#!c:/Perl/bin/perl.exe
##
##  printenv -- demo CGI program which just prints its environment
##

print "Content-type: text/plain; charset=iso-8859-1\n\n";
foreach $var (sort(keys(%ENV))) {
    $val = $ENV{$var};
    $val =~ s|\n|\\n|g;
    $val =~ s|"|\\"|g;
    print "${var}=\"${val}\"\n";
}

