in reply to Re: Print Header in Perl v5.8.7
in thread Print Header in Perl v5.8.7
The result is the following on the browser:#!/usr/bin/perl -w use CGI qw(:all); use strict; open(TESTFILE, ">thetestfile") || die "Cannot open $!"; close(TESTFILE); print header; print "DONE";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Print Header in Perl v5.8.7
by chromatic (Archbishop) on Aug 19, 2005 at 17:16 UTC | |
by Anonymous Monk on Aug 19, 2005 at 17:56 UTC | |
by Corion (Patriarch) on Aug 19, 2005 at 18:00 UTC | |
by chromatic (Archbishop) on Aug 19, 2005 at 18:13 UTC |