CyCliC has asked for the wisdom of the Perl Monks concerning the following question:
I get a "Use of uninitialized value" message on the $data ... lineprint start_form(); print p("Document nr: ", textfield("doc_nr")); print p("Document name: ", textfield("doc_name")); print p("Author: ", popup_menu("author", \@authors)); print p(submit("DO"), reset("clear")); print end_form(), hr(); $data = (param("doc_nr") . param("doc_name") . param("author") . l +ocaltime() . "\n");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: problem with using data
by davorg (Chancellor) on Jul 31, 2001 at 15:17 UTC | |
|
Re: problem with using data
by tachyon (Chancellor) on Jul 31, 2001 at 16:14 UTC | |
|
Re: problem with using data
by CyCliC (Novice) on Jul 31, 2001 at 15:32 UTC |