in reply to CGI file very odd
STDOUT is the default filehandle, so no need to specify it.#! /usr/bin/perl -w use strict; use CGI; my $query = new CGI; print $query->header(); print $query->start_html( -title=> "CGI"); while (my $size = read($cgi->param('file'),my $data,1024)) { print $data; } print $query->end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: CGI file very odd
by Anonymous Monk on Jan 30, 2003 at 12:48 UTC | |
by Jaap (Curate) on Jan 30, 2003 at 13:46 UTC | |
by Anonymous Monk on Jan 30, 2003 at 14:19 UTC |