我需要知道如何在刷新的 div 的页面中捕获或获取用户的 id,我只需要在他的页面中显示用户的数据而不是所有的数据..
这是honorario.php中的数据
<?php include('loader.php'); ?>
<?php include_once("configs.php"); ?>
<table class="table table-striped">
<thead>
<tr>
<th><?php $translate->__('Date'); ?></th>
<th><?php $translate->__('Income'); ?></th>
</tr>
</thead>
<tbody>
<?php
$sql = $conn->prepare("SELECT id, DATE_FORMAT(start, '%d %M %Y') AS start, honorario FROM COMPRAS WHERE id_user=$_GET[id_user] order by start ASC");
$sql->execute();
while($row = $sql->fetch(PDO::FETCH_ASSOC)) {
?>
<tr>
<td><?php echo $row['start']; ?></td>
<td><span class="add-on">$ </span><?php echo $row['honorario']; ?><span class="add-on">.00</span></td>
</tr><?php } ?>
</tbody>
</table>
这是每个用户页面中的 div:
<div class="box-content" id="honorario"></div>
这是脚本
<script type="text/javascript">
setInterval(function() {
$.get('includes/honorario.php', function(data) {
$('#honorario').html(data);
});
}, 1000);
</script>
问题是 $_GET[id_user] 在 Honorario.php 中不起作用,我不知道如何才能抓住它