Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: Input value in textbox
by jZed (Prior) on Mar 15, 2005 at 04:41 UTC
    Do you mean an HTML textarea input field? If so:
    #!perl use warnings; use strict; use CGI qw(:all); use CGI::Carp qw(fatalsToBrowser); my $textarea_value = parm($textarea_field_name); # ...
    If you mean something else, please tell us what it is.
      my $textarea_value = parm($textarea_field_name);

      should probably be
      my $textarea_value = param($textarea_field_name); #or (in all probability) if you know the textarea name beforehand my $textarea_value = param('textarea_field_name');

      Manav
Re: Input value in textbox
by rev_1318 (Chaplain) on Mar 15, 2005 at 10:30 UTC
    Post good questions ASAP. Please!

    Again, we are to guess what exactly is the problem. What have you tried so far? It's nice that others are having a guess to what you are asking, but IMHO it is more helpfull to let people help themself, by providing guidance, asking back the the right questions and commenting on what they have coded so far.

    Paul