JackTheRussel
Programmer
Hi.
I have made perl-mason pages, where I can upload an file (picture). Now, some reason it fails. It just creates an empty filename. I have added this to my code:
use CGI qw
standard);
Does someone have clue, why this isn't working?
Here we get our picture:
And here we specify veriables:
Here is the save_picture function
Now it creates an empty filename (example pic.gif) to the /tmp folder ?
I just don't figure, why it is not working.
I have made perl-mason pages, where I can upload an file (picture). Now, some reason it fails. It just creates an empty filename. I have added this to my code:
use CGI qw
Does someone have clue, why this isn't working?
Here we get our picture:
Code:
<div>
<span class="body-field-title">Image:</span>
<input class="text" type=file name="image"/>
</div>
And here we specify veriables:
Code:
our ($bytesread, $buffer);
our $num_bytes = 1024;
our $totalbytes;
our $filename = param('image');
our $file = "/tmp/$filename";
#HERE WE CALL save_picture function
&save_picture;
Here is the save_picture function
Code:
sub save_picture {
open (OUTFILE, ">", "$file") or die "Couldn't open $file for writing: $!";
while ($bytesread = read($filename, $buffer, $num_bytes)) {
$totalbytes += $bytesread;
print OUTFILE $buffer;
}
close OUTFILE or die "Couldn't close $file: $!";
}
Now it creates an empty filename (example pic.gif) to the /tmp folder ?
I just don't figure, why it is not working.