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=test@gmail.com
But how can I get this data in vb.net into strings?
Dim data = "name=test&password=123456&email=test@gmail.com"
Dim name = data("string")
??
Or how?