$ _SESSION无法使用Javascript在php页面之间读取值

时间:2017-02-05 21:16:20

标签: javascript php html

我使用简单的Javascript在2个PHP文件之间传递数据时遇到了问题。

在events.php中我有:

<script type="text/javascript">
$(document).ready(function() {
   $("#row").load("includes/getRecords.inc.php" + window.location.search); 
   $(".paging_link").bootpag({
      total: <?php echo $_SESSION['pages']; ?>
   }).on("page", function(e, num){
      e.preventDefault();
      $("#row").load("includes/getRecords.inc.php" + window.location.search, {'page':num});

   });
});
</script>

在getRecords.php上,我得到了:

$_SESSION['pages'] = $test; 
即使使用print_r进行测试, events.php

$ _ SESSION [&#39;页面&#39;]也未显示任何内容。为什么在调用方法.load时,不会从 getRecords.php 读取会话值?

由于

0 个答案:

没有答案