in reply to Posting arrays
Web forms are transmitted via HTTP, which supports only text and bytes, no arrays.
So you need to convert your array to text, and then later turn the text into an array again.
The simplest approach is to join the array by a delimiter that does not appear in the data, and split it again on the same delimiter.
|
|---|