1

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?

  • What do you mean by "Send"? How do you do that? Is the VB.NET code running inside an ASP.NET web page? – Alireza Jul 12 '14 at 19:08
  • 1
    Do you mean [parsing query strings](http://stackoverflow.com/questions/68624/how-to-parse-a-query-string-into-a-namevaluecollection-in-net)? Like `name=test&password=123456` -> `collection(name=test,password=123456)`? – Dave Chen Jul 12 '14 at 19:09
  • You can try to pass your data from php to vb.net, by calling system function here is some documentation: [PHP: system - Manual](http://php.net/manual/en/function.system.php) – Cristofor Jul 12 '14 at 19:11
  • well, I have a string "name=test&password=123456&email=test@gmail.com" and I wanna get the values in vb. For example: Dim name = string("name") -> and the value would be test – user3806552 Jul 12 '14 at 19:12
  • what kind of vb.net application – Ken Tucker Jul 12 '14 at 20:01
  • what kind of vb.net application? – Ken Tucker Jul 12 '14 at 20:05

0 Answers0