in reply to How to redisplay previously submitted text
use CGI qw/:all/; ... my $previous_value = "This is what I wrote before"; # fetch this someh +ow param('story', $previous_value); # sets default to previous ... print textarea('story'); # prints an input form element, defaulting to + previous value for it
|
|---|