in reply to Fil Upload Problem

Just a guess without code to look at, but you may be try to perhaps open the $filename you are getting? ala

my $filename = $query->param("file_uploaded"); open(FH, "<$filename or die "cannot open!");

If so, don't do that. Just process the $filename which is a file handle.

my $filename = $query->param("file_uploaded"); while (<$filename>) { # do something }

well I hope I guessed right :-), good luck!

Replies are listed 'Best First'.
Re^2: Fil Upload Problem
by OverlordQ (Hermit) on Sep 01, 2004 at 19:44 UTC
    Edit: wrong node