When you 'use strict', you must declare each variable using my().
my referrers = qw(one two three four);
When you do this, be sure to keep in mind that whatever variable you
declare will be scoped to the block it is in (or the file, if it is
declared outside of a block.
Do a 'perldoc st
In short, you need to declare your variables in your script.
my $OrderFile;
my $referer;
Instead of just "defining" your variable (example below)
$referer = "something"; # TAINTED DATA
On 1/12/06, Gerald Wheeler <[EMAIL PROTECTED]> wrote:
>
> Need a little help... trying to this thing right.