in reply to Why is my GetOptions() Not Working?

Yes you need a '-' or '--' before the option.
$ perl getopt.pl Verbose=1 Options[Verbose][0] $ perl getopt.pl -Verbose=1 Options[Verbose][1] $perl getopt.pl --Verbose=1 Options[Verbose][1]
where getopt.pl is you code.
-- gam3
A picture is worth a thousand words, but takes 200K.