我使用简单的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 读取会话值?
由于