in reply to reading more than one file in a CGI Script.
I do need to point out that you shouldn't hard-code your data like such, maybe something more generic would be better:while(<$filepath2>) { print } while(<$filepath>) { print }
Jeffforeach (@files2upload) { open F, $_ or die "Yack on file $_\n"; print while(<F>); close F; }
|
|---|