Hello!

Now i made the process to pass the value of 'two text box' values form VB form to PHP web page. I got the two text box values in one variable.
Below is my coding:
Code:
Dim strUrl As String
    Dim strFormData1 As String
   Dim strFormData2 As String
   
    
    strUrl = "http://bala.freetzi.com/vblicense/serialcheck.php"

    Inet1.URL = strUrl
    
    Inet1.Execute strUrl, "post", "serial=" & Text1.Text & "name=" & Text2.Text, "Content-Type: application/x-www-form-urlencoded"
End Sub
In my above coding:
In 'serial' variable i got text box1 value , in 'name' i got textbox2 value.

But when i receive the two values in PHP page.
The text box1 and text box2 both values are come in 'serial' variable and no value is come in 'name' variable.

I want to pass text box1 value in 'serial' variable and textbox2 value in 'name' variable.

Help me to do that.Pls!