Hi
I need to read an array of parameters from the payload of an HTML form that is POST-ed to my B4J server.
I normally use
to read a single parameter "mydata".
My payload also contains multiple parameters like
What should I do to read these "text[n]" parameters into a "text" array?
Thanks
Andrea
I need to read an array of parameters from the payload of an HTML form that is POST-ed to my B4J server.
I normally use
B4X:
Dim mydata As String = req.GetParameter("mydata")
My payload also contains multiple parameters like
B4X:
text[0]=thisIsTextElementOne&text[1]=thisIsTextElementTwo&text[2]=thisIsTextElement&...
What should I do to read these "text[n]" parameters into a "text" array?
Thanks
Andrea