将数据从西门子s7 1200 PLC传递到PHP脚本

时间:2016-11-21 09:31:56

标签: php html plc s7-1200 siemens

目前我正在与PLC合作开展项目。

我有西门子s7 1200 PLC,我想将数据传递到另一个网站。例如,我想计算单位并在数据库上发送/记录。

我知道我可以在PLC上建立网站并从PC远程打开该网站,它可以工作。

但我的问题是:

是否可以使用html表格并登录到另一台服务器FROM PLC并通过GET将参数传递给PHP脚本?

基本上我需要找到一种从PLC执行html链接的方法。 [如果可能,我不需要代码,只需要想法? ]

1 个答案:

答案 0 :(得分:1)

I think that u cannot send parameters over website cause cross domain.. you should use comunication data blocks for sending parameters over WiFi or Ethernet with TCP or UDP protocol. So you can make that like this. for example: You can make a button on your PLC web server user-defined site and when will user press that button, it will be send request to the internal PLC logic and after execution can be forwards data to another web site contains PHP backend.