Home : General : Perl Programming :

General: Perl Programming: Re: [PerlFlunkie] how to transfer image from one dir to another?: Edit Log

Here is the list of edits for this post
Re: [PerlFlunkie] how to transfer image from one dir to another?
I don't think you can put $in{'Filename'} inside a quoted string. It won't interpolate the variable. You need to remove the single quotes or assign the value to another variable and use that, eg:

my $file = $in{'Filename'};

Last edited by:

Wychwood: Nov 19, 2009, 5:00 AM

Edit Log: