-3

私はここで何を間違えましたか?1 つ目は save.php で、2 つ目はユーザーが正常に登録された後にエコーする必要がある [Thank you] の 2 つのページを含めました。

save.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

variable を送信することはありません$_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 に答える