Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我创建了一个使用 Jquery 加载功能的网站,仅重新加载网站的部分内容,而无需用户重新加载整个网站。
$('#divtoreload').load('refresh.php');
这很好用,除了现在我需要刷新脚本来根据用户会话 ID 显示不同的信息(为数据库提取)。但是,使用该session_id();函数,会话 ID 似乎没有被拉入代码中,因此数据库结果不返回任何内容。
session_id();
你打电话session_start();之前有没有打电话session_id();?您必须启动会话才能访问任何会话变量。
session_start();
把 session_start() 放在你的 refresh.php