-1

可能重复:
从 Javascript 向 PHP 传递多个参数

我目前正在尝试将数据从 Javascript 传递到 PHP。我从 Javascript 访问 PHP 脚本,但$_Post变量中没有存储任何信息。我什至尝试了$_Getand the$_Request以确保它没有存储在那里。不是。有人可以帮帮我吗?我正在使用的功能如下。变量 str 是我在 javascript 的其他地方创建的一串东西,我觉得看起来好像没用。它们不是从 HTML 表单中获取的。PHP脚本也在下面。
谢谢

应该进行信息传递的Javascript函数。

function postForm(str) {
  var xmlHttp;
  try
    {    // Firefox, Opera 8.0+, Safari
     xmlHttp=new XMLHttpRequest();
    }
    catch (e)
    {    // Internet Explorer    
      try
      {
       xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");      
      } catch (e)
        {      
         try
         {
          xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
         } catch (e)
           {       
             alert("ERROR: CAN NOT POST DATA");
           }
        }
    }

    try 
    {
      xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4)
        {
         alert(xmlHttp.responseText);
        }
      }
       xmlHttp.open("POST","BigInt2.php",true);
       postStr = "msg="+escape(str);
       alert("SENDING: "+postStr);
       xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
       xmlHttp.send(postStr);
    } catch(e)
      {
       alert("ERROR POSTING DATA");
      } 

}

PHP 函数应该打印 infomration 作为信息存储在 $_Post 全局变量中的概念证明。BigInt2.php

<?php
echo$_Post['msg'];
echo$_Get['msg'];
echo$_Request['msg'];
?>
4

1 回答 1

4

您输入错误(发布并获取)在您的 php 文件中尝试此操作,看看它是否有效

echo $_POST['msg'];
于 2012-04-14T16:10:09.757 回答