我想将表单数据提交到另一个 url(另一个服务器上的网站)捕获成功或失败消息(服务器输出)并在表单网页上回复。
我想在不让用户知道数据实际上已发布到另一个网站的情况下实现这一点。
echo "
<html>
<body>
<form action ='http://www.example.com/processor.php' method ='POST' >
<input type ='hidden' value ='official' name = 'name'/>
<input type ='hidden' value ='official2' name = 'email'/>
<input type ='hidden' value ='official3' name = 'contactTime'/>
<label for 'other info'> Enter details here </label> <br/>
<textarea rows='4' cols='50' name ='other info' maxlength='200'></textarea>
<input type ='hidden' value ='official4' name = 'legalId'/>
</br>
<input type = 'submit' name = 'submit' value ='Send'/>
</form>
</body>
</html>
";
// I want to send the data to http://example.com/processor.php
?>
我已成功将此数据发送到http://example.com/processor.php ,页面上显示成功整数“2”。我不希望我的网站访问者看到此页面。我想从另一台服务器捕获这个成功整数,并将其作为消息显示给我自己的网站上的用户。