in reply to Re: Re: Printing From a File Handle
in thread Printing From a File Handle

TIMTOWTDI:
# shortest print "$_<br />" while <AP_MENU>; # show what you mean { local $\ = "<br />"; print while <AP_MENU>; } # more readable? foreach my $line (<FILE>) { print $line, "<br />"; }
-- Frank

Replies are listed 'Best First'.
Re: Re: Re: Re: Printing From a File Handle
by bkiahg (Pilgrim) on Apr 28, 2004 at 20:43 UTC