我通过使用表单操作将变量发送到另一个域并且它可以工作:
<form method="post" action="http://example.com/index.php?email=FOO&subject=BAR">
在www.example.com/index.php中,可以打印出数据:
print_r($_GET);
>Array ( [email] => FOO [subject] => BAR )
但是,当我尝试使用www.example.com/index.php中的print_r($ _ POST)命令访问数据时,我得到一个没有值的数组:
print_r($_POST);
Array ( [email] => [subject] => )
您可能建议仅使用get方法或任何其他方法,但我想知道为什么post方法不适用于相同的模式。