如何在外部页面提交内容?

发布于 2024-12-01 02:14:41 字数 179 浏览 0 评论 0原文

有谁知道我如何填写并提交托管在单独服务器上的表格。举例来说,我想在 http://tools.950buy.com/rss- 上填写表格提交/,但我想通过我网站上的 PHP 脚本来执行此操作。这可能吗?谢谢。 :)

Does anyone know how I can fill in and submit a form which is hosted on a separate server. Say for example, I wanted to fill the form out on http://tools.950buy.com/rss-submit/ but I wanted to do this from a PHP script on my site. Would this be possible? Thanks. :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

記憶穿過時間隧道 2024-12-08 02:14:41

要从 PHP 脚本执行此操作,您应该模拟 HTTP POST 请求。您可以使用 客户端 URL 库file_put_contents() 函数,并正确设置 $context 参数:

$opts = array(
  'http'=>array(
    'method' => 'POST'
  )
);

$context = stream_context_create($opts);

To do it from PHP script you should simulate a HTTP POST request. You can do that by using Client URL library or file_put_contents() function with properly set up $context parameter:

$opts = array(
  'http'=>array(
    'method' => 'POST'
  )
);

$context = stream_context_create($opts);
夜访吸血鬼 2024-12-08 02:14:41
<form action="http://url.to/script.php">
<form action="http://url.to/script.php">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文