in reply to uploading images into cgi's
my $image = $query->param('image'); $image =~ m/^.*(\\|\/)(.*)/; print header('image/gif'); while (<$image>) { print STDOUT $_; } [download]
Dingus