in reply to Re: Re: perl tutorial clarification
in thread perl tutorial clarification

Thats much more like it..

Are you sure thats the same path your other form is using to save the files to? Try outputting $userfile as well, to see what that contains? You can check if a file exists using '-e', so you could try if(-e $userfile) { display_page("Can't find $userfile") } or something similar..

C.