I have a vb.net application where I am sending error string to a php page to process it.
Look at this: How to send and recieve data from Visual Basic to PHP?
But now, I want to send and receive array data from Visual Basic to PHP.
Well, if the errorString
is like this array:
Dim errorString As String = new String(2) {}
errorString(0) = "Hello"
errorString(1) = "World!" ,
how can I send this errorString
?
Anyone help me!