gpt4 book ai didi

php - 自动填写另一个网站的表格并发送

转载 作者:行者123 更新时间:2023-12-04 06:19:24 24 4
gpt4 key购买 nike

我在网上搜索,什么也没找到。

在网站上,有一个电子邮件地址的输入框。我想用电子邮件地址填写此字段并发送表格。然后我将从网站上获取整个源代码。

不要想把它提供给像“?myvar=test&myvar2=test2”这样的 URL。我搜索了 CURL 的示例,但一无所获。

我只想填写表格,发送它并获取源代码。或者是否有适用于 Firefox 的插件或免费程序?

最诚挚的问候
卡尔托

最佳答案

您将需要查看表单操作属性。这应该将您指向表单发布到的脚本。当您拥有该信息时,您可以使用 curl 或在 php 中向该网址发送 POST 请求,

$postdata = http_build_query(
array(
'email' => 'youremailaddress'
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);

$context = stream_context_create($opts);

$result = file_get_contents('http://example.com/submit.php', false, $context);

关于php - 自动填写另一个网站的表格并发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6787872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com