I'm rather new to HTML programming. I understand the basics of interactive collection of input via forms.
I'd like to collect some data computed by a JavaScript function during execution of a page. Not being able to think of an alternative, I think the way to do that is to enter the function result into a form variable. How do I do that (simple example for a single scalar numeric value, please)?
Forms data is typically a short string. For my problem, I'd like to collect a largish array of results (set of booleans or naturals, size ~~ 1000). Presumably if that's converted to a string (of size several thousand bytes) I can return that string as a forms variable the same way as the scalar answer. Does the size of the string get me into trouble anywhere?
Suggestions?