in reply to Re^3: How to get input text boxes populated
in thread How to get input text boxes populated
You have:
use strict;
which enabels strictures, see perldoc strict. You need to declare variables before using them, e.g. my $input;. Copying and pasting other peoples code without understanding it is a bad idea. Consider spending some time working your way through the following links:
Update: Also, don't ignore previous advice. See the responses to Re^2: How to get input text boxes populated.
|
|---|