我有一个名为 user.php 的 https 页面,它获取数据并将其发布到另一个接收.php https 页面。我的问题是每当我提交我的数据以发布接收.php 显示服务器错误。我已阅读有关 cURL 的文章,但对语法没有清晰的了解。
用户.php
<form action="https://www.mydomain.com/ssl/receiving.php">
<input type="text" name="variable" />
<input type="submit" name="buttonName" />
</form>
接收.php
if(isset($_POST["buttonName"]))
{
$variable=$_POST['variable'];
}