Home : General : Perl Programming :

General: Perl Programming: Re: [Ian] File Handle Warning: Edit Log

Here is the list of edits for this post
Re: [Ian] File Handle Warning
You get this when running you script under use warnings; right?

If you're defining a file handle, you should define it as upper case so to be sure that it doesn't clash with future functions or any other reserved word. This should do the trick:

Code:
open (OUTF, ">index_$rec{'ID'}.html");

- wil

Last edited by:

Wil: May 25, 2002, 5:40 AM

Edit Log: