是否可以将Visual Basic表单数据发送到PHP并接收信息? 这是我想要做的类似情景:
这可能吗?
答案 0 :(得分:2)
这是是。
对于 VB 部分,请在此处检查my answer以向PHP发送数据(GET和/或POST)。
这是一个很长的答案,但它很容易
对于 PHP 部分,假设信息是由此代码发送的:
Dim Page As New WEBhtml("http://www.example.com/index.php?getfrom=here", {"is=numeric"})
这将是 PHP 代码
<?php
if(isset($_POST['is']))
if(is_numeric($_POST['is']))
echo 'Yes, that is numeric';
else
echo 'No, that is not numeric';
else
echo 'Say something!';
?>
希望它有所帮助。