in reply to Re^2: textarea entries
in thread textarea entries
update to give an example
(When I said "go get CGI.pm" I was speaking metaphorically, you don't actually need to "get" anything, it comes with perl.#!perl -w use strict; use CGI qw(:all); my $FORM = param->Vars; my $textarea = $FORM{"text_area_field_name"}; my @numbers = split /\s+/, $textarea.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: textarea entries
by TeaK (Initiate) on Feb 23, 2005 at 19:37 UTC | |
by jZed (Prior) on Feb 23, 2005 at 19:41 UTC |