- or download this
# to test form upload using CGI.pm - works fine!
use strict;
...
print <$fh>;
print "</body></html>\n";
exit(0);
- or download this
# to test form upload
use strict;
...
print $cgi->param("file1");
print "</body></html>\n";
exit(0);
- or download this
<html>
<head>
...
</form>
</body>
</html>