Javascript - 在ajax加载后访问PHP会话变量

时间:2014-01-18 03:16:44

标签: javascript php jquery ajax

我有两个文件,一个是productlisting.php,另一个是producttree.php(这个是ajax文件)。

我在ajax文件producttree.php中有一个会话变量

 $checktotalrecords=$_SESSION['totalnoofrecondfound'];

我想在运行ajax之后将变量值高于main productlisting.php文件。

上述变量的目的是检查ajax中的记录没有,以便处理productlisting.php文件中的下一个和上一个按钮。

谢谢

1 个答案:

答案 0 :(得分:0)

in producttree.php:

$checktotalrecords=$_SESSION['totalnoofrecondfound'];
//do some stuff to $checktotalrecords

$return = ["checktotalrecords"=>$checktotalrecords]; //add any other variables you want to return as well

echo json_encode($return);
productlisting.php中的

我认为你有类似的东西:

$.ajax(...);

将其更改为

$.getJSON('producttree.php',{datatosend},function(json){
   var checktotalrecords = json.checktotalrecords;
   //update DOM elements with above value as needed
 });