#!/usr/bin/perl -w # rsdnl.pl use strict; use warnings; ######################################### ###### PROGRAM DESCRIPTION ###### # This script pulls information from text # files and posts it on the web. ######################################### ## Declare Variables ## my $Source_File; my $Source_Title; my @Contents; my $content; ## Read Post Input and Set Source ## $Source_File = $ENV { 'QUERY_STRING' }; $Source_File = "Not Defined" unless $Source_File; $Source_Title = $Source_File; $Source_Title =~ s/^.*\///; ## Display Web Page ## print "Content-type: text/html\n\n"; print <<"EOF";
EOF
exit 0;
|