in reply to Re: CGI.pm file upload freaking me out
in thread CGI.pm file upload freaking me out
Getting a pair of radio buttons on the upload form for 'text' and 'binary' is left as an exercise.my $stripCRs = param('filetype') eq 'text'; ... while ( <$upload> ) { s/\r// if $stripCRs; print UPLOAD $_; }
|
|---|