in reply to Re^4: MooTools - how to grab file contents?
in thread MooTools - how to grab file contents?

Turned out to be a real "school boy" error - I was outputting all the other data to STDERR, but not that bit :) The following works just fine:

my $handle = $cgi->param('Filedata'); while (<$handle>) { print STDERR $_ }


Thanks guys :)