So I would like to send more than 1 datas from PHP to vb.net how can I do that?
I tried for example this:
PHP:
name=test&password=123456&[email protected]
But how can I get this data in vb.net into strings?
Dim data = "name=test&password=123456&[email protected]"
Dim name = data("string")
??
Or how?