我使用的软件可以选择通过POST发送请求:
https://i.gyazo.com/6a5abee28a780e7cec3ca9d6d7cfc7ab.png
我想尝试一下,所以我制作了两个PHP文件
postform.php:
<html>
<body>
<form action="post.php" method="post">
<input type="text" name="proxies">
<input type="submit" value="Submit Info">
</form>
</body>
</html>
post.php中:
<?php
$proxies = $_POST['proxies'];
$file = 'proxies.txt';
file_put_contents($file, $proxies);
?>
之后应该将结果保存到txt文件中。
它通过网络表单工作,但通过软件失败
根据软件中的内容,请求应如下发送:
http://website.com/postform?proxies=%content%
我该怎样做才能让它发挥作用?