in reply to required files

99.9% of the time, if the file being included has no package statement, you want do instead of require. require only runs the included file once, not once per require.

>type 544228.pl print '!'; >perl -e "require '544228.pl'; require '544228.pl'" ! >perl -e "do '544228.pl'; do '544228.pl'" !!

Replies are listed 'Best First'.
Re^2: required files
by Anonymous Monk on Apr 19, 2006 at 00:35 UTC
    Hi. I changed require to do and it's not doing anything either. No errors or anything. Just not printing if I don't print the print header;