Hi, I'm having a problem uploading a file using perl. I can get the file uploaded but it becomes distorted. Here's the uploading part of the script.
Thanks for all help!
_______________________________________
You don't know me.
Code:
open(OUT,">./mywebs/ETbyrne/youth/album/images/$random.jpg") or &error("Can not open outfile for writing: $!");
flock(OUT,LOCK_EX);
my $file_len = 0;
while (read($file,my $i,1024))
{
print OUT $i;
$file_len = $file_len + 1024;
if ($file_len > 1024000)
{
close(OUT);
&error("File is to large, photo must be less than 1MB. Save aborted.");
}
}
close(OUT);
Thanks for all help!
_______________________________________
You don't know me.