这是:
include('summary_table.php?pid='.$profile_id);
脚本无效?
如果没有,为什么它不起作用?
路径正确,var_dump($profile_id);
会返回正确的结果。
编辑:需要此方法的原因是,我在页面中使用JQuery每隔几分钟刷新一个summary_table.php?pid='.$profile_id
的div,所以我有$pid = $_GET['pid'];
个我的summary_table.php。
问题是div在加载时不会填充summary_table.php,等待JQuery填充它的几分钟。
答案 0 :(得分:0)
这种方式永远不会奏效!请改用:
Index.php(或任何其他名称):
<?php
include'summary_table.php';
echo $profile_id;
?>
Summary_table.php:
<?php
$profile_id = whatever you want here;
?>
答案 1 :(得分:0)
您在include中调用了URL,这是无效的。
为什么不在summary_table.php中使用$ _GET ['pid']或$ profile_id。
它将始终带来所需pid的数据。
答案 2 :(得分:0)
include工作就像你粘贴它的内容而不是调用它一样。
include('summary_table.php');
然后在summary_table.php里面:
$pid=$profile_id;