Hi I'm trying to pass a value from Vb to PHP. So far I have used public property to pass a string value to one form to another
Public _passedText As String
Public Property PassedText() As String
Get
Return _passedText
End Get
Set(ByVal Value As String)
TextBox1.Text = Value
User.Text = Value
End Set
End Property
I would like the same value to be passed to a php file is this possible? Also I'm using WinForms