<?php echo $_GET['msg'];?>
这是我在contact.php上使用的代码行。
并且
if(mail($to,$subject,$message,$headers))
header("Location:../contact.php?msg=Successful Submission! Thank You for Contacting us.");
else
header("Location:../contact.php?msg=Error To send Email !");
我只看到了&#39; msg&#39;在这段代码中可以做些什么?
答案 0 :(得分:1)
首先检查“msg”:
<?php if(!empty($_GET['msg']) echo $_GET['msg'];?>