0

我是网络技术的新手,我遇到了一些障碍,

我有一个 php 页面,它通过调用另一个 php 页面在 JS 中发送邮件请求,

但我需要将我的邮件的值传递给那个新的 php 页面,使用硬编码的 val 都可以正常工作,但我需要知道如何将参数传递给我的 php 发送邮件页面,

这里是主 php 页面的代码:

<script>
...
$.post( "send-mail-parklane-suscrib.php" , { name: "John", time: "2pm" });
...
</script>

这里是 send-mail-parklane-suscrib.php 的代码

<html>
<head><title>PHP Mail Sender</title></head>
<body>
<?php
session_start(); 
echo("chamb");
$to = 'juanss234@gmail.com';
$from = 'bot@parklanefinancial.com.au';
$subject = 'Parklane Financial Subscribe';
$headers = 'From: bot@parklanefinancial.com.au' . "\r\n".
'Reply-To: test@abc.com'. "\r\n".
'Return-Path: test@abc.com' . "\r\n".
'X-Mailer: PHP/' . phpversion();
$message = "SS9 tkt ss9!!!";
mail($to, $subject, $message, $headers, "-f $from");
?>
</body>
</html>

那么如何在我的发送邮件页面上访问这个 vals?

谢谢!

4

2 回答 2

1

它们将被保存到superglobal, 中$_POST

<?php
   echo $_POST["name"]; //Echos John
   echo $_POST["time"]; //Echo 2pm

   /**
    *  You may see at anytime if your page has
    *  any set by: (Dev use only) Printing the contents
    *  of the $_POST Array.
   **/
   print_r( $_POST );

   /**
    * Note, it's important you check the existence 
    * & verify any values sent.
   **/
  if ( isset( $_POST["name"] ) && $_POST["name"] !== '' ) {
    //Code
    $Name = $_POST["name"];
  }
?>

还有其他的:

  • $_GET- 对于 GET 请求
  • $_POST- 对于 POST 请求
  • $_COOKIE- 饼干
  • $_REQUEST- 以上所有。
于 2013-10-20T00:51:24.703 回答
0

利用$_POST

$name=$_POST['name'] //John 

ETC。,

于 2013-10-20T00:49:48.613 回答