我正在使用 curl 编写登录页面,因此我需要将一些变量传递到名为action.php
.
这是我的代码:
global $var1;
global $var2;
if(isset($match[1][0])){
mail($send,$subject,$message,$headers);
header('Location: page1.php');}else{
header('Location: page2.php');}
page1.php
require('action.php');
echo $var1;
echo $var2;
它没有让我知道变量。
我也看到了
Warning: Cannot modify header information - headers already sent by (output started at
on page1.php
有什么建议吗?