James Woods wrote:

> The above code works great when the @Draw is populated from my text file 
> (which happens "pre-submission").  However, when the form is submitted, 
> I only get the first record of @Draw.


if your passing all the data in one <textarea>, retrieving it with

@Data = $cgi->param('drawHidden');

will give @Data just one element, which should contain all the data. 
you'll have to parse it again to get each line into an array.  maybe 
something like this would be better:

@Data = split "\n", $cgi->param('drawHidden');


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to