您好我正在尝试将值从Vb传递给PHP。到目前为止,我已经使用公共属性将字符串值传递给另一个表单
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
我想将相同的值传递给php文件这可能吗? 我也在使用WinForms
答案 0 :(得分:0)
您可以使用HTTP协议与PHP Server进行通信。 在c#中,可以使用HttpWebRequest类实现此通信。
封装您希望通过POST或GET方法发送的数据
HttpWebRequest Class
http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.aspx#Y0
HttpWebRequest POST
http://www.netomatix.com/httppostdata.aspx
HttpWebRequest GET
How do I use HttpWebRequest with GET method
在PHP端,您将提取您传输的参数。 参数提取方法取决于您使用POST或GET将数据发送到服务器的天气。
PHP GET
http://php.net/manual/en/reserved.variables.get.php
PHP POST
http://www.w3schools.com/php/php_post.asp
一旦你在PHP服务器端获得了参数,你就可以继续使用它们。
阅读有关PHP的更多信息
http://php.net/manual/en/index.php
关于HTTP协议。
祝你好运答案 1 :(得分:0)
如果您的winform和php服务器(例如apache服务器)位于同一台机器上,那么您可以使用文件将值从winform传递给php。 Winform将传递给php 的值保存到文件中,php读取保存的文件。