JavaScript变量到php会话变量

时间:2014-02-03 09:29:44

标签: php jquery mysql

所以我得到了这个非常简单的jQuery数据表,并且我试图将我选择的值变为php变量。这是我的代码:

<script>
        var hlr = 0;   // Reference to the currently highlighted row

function rowClick()
{
   if (hlr)
      $("td:first", hlr).parent().children().each(function(){$(this).removeClass('markrow');});
   hlr = this;
   $("td:first", this).parent().children().each(function(){$(this).addClass('markrow');});

   // You can pull the values out of the row here if required
   var a = $("td:first", this).text();
   var b = $("td:eq(1)", this).text();

    //$_SESSION['Klantnaam']="+a+");

   alert("Keuze = "+a+""); //this is what I need in my PHP session variable.
}
      </script>

感谢您的阅读,我们非常感谢您的回复。

1 个答案:

答案 0 :(得分:0)

我在最近的项目中已经遇到过这个问题

这是我的解决方案

但是我必须把值放在会话变量中,所以

<强> STEPS

  1. 创建了一个将值放入会话变量

  2. 的php文件
  3. 使用js var value

  4. 向该php文件发送ajax请求