0

我有一个表单,我用 Jquery 向下滑动,还有一个 php 脚本,我需要在将数据发送到服务器 (php) 后重定向,并且还显示“成功”消息(不是在 url 中,而是在表单中)。
我正在这样做(正如我在stackoverflow中找到的那样):

header("location:VIP.php?response=1");

并在 VIP.php 之后:

if (isset ($_GET['response']))
{
    if ($_GET['response']=="1")
    {
      echo "Se ha registrado con éxito"; //this is my success message (spanish)
    }
}

它就像一个魅力,唯一的事情是我需要设置这个样式,它显示在身体的左上角......而且我不知道如何让它以表单(或任何其他特定的 div)显示

如果有人能启发我,我将不胜感激。谢谢!

4

1 回答 1

1

像这样做:

if (isset ($_GET['response']))
{
   if ($_GET['response']=="1")
   {
       $msg = "Se ha registrado con éxito"; //this is my success message (spanish)
   }
}

然后在您的 html 页面中的某个位置(例如在您的表单中):

<?php if( $msg ): ?><div class="notice"><?php echo $msg ?></div><?php endif; ?>
于 2013-05-30T19:37:23.570 回答