-3

我在这里做错了什么?我有两个页面,第一个是 save.php,第二个是用户成功注册后必须回显的谢谢。

保存.php

if($mail->Send()) {

            }
            unset($_SESSION['GENRE_REQUEST']);

    }
    header('Location:index.php?page=thanku=1');
    exit();
}
else
{
    header('Location:index.php?page=thanku=1');
    exit();
} 

谢谢.php

  <?php if(!empty($_GET['msg']))
                              { 

  if($_GET['msg']==1) 
                              { ?>
  <tr>
    <td align="center" valign="top"><b>Thank You for Registering With us.</b> <br />
      <br />please activate your profile by clicking on the activation link sent to your email address.<br/></td>
  </tr>
4

2 回答 2

3

你永远不会发送变量$_GET['msg']。您正在像这样重定向

header('Location:index.php?page=thanku=1');

把它改成这个,你会看到你的消息

header('Location:index.php?page=thanku&msg=1');
于 2012-09-12T12:36:48.843 回答
2

那是错的

header('Location:index.php?page=thanku=1');

你忘了味精

header('Location:index.php?page=thanku&msg=1');
于 2012-09-12T12:37:28.657 回答