In my iOS application (using objective-c) I send some values to my php server and write them to my mysql database tables. Until now I needed to pass at most 2 values. My post string was always like @"username=%@&password=%@". I do not have any problem with that.
However, I have to send more than 2 values now and they will be more than one. For example, I want to send something like
array_A: [value1, value2, value3, value4],
array_B: [value1, value2, value3, value4],
array_C: [value1, value2, value3, value4]
How can I do that? And how can I parse it at the php side? Thanks in advance...