使 AJAX PHP 脚本使用与主页相同的会话

发布于 2024-12-25 23:17:22 字数 340 浏览 0 评论 0原文

我有一个启动 PHP 会话的主页,该会话创建会话 ID #1。我用 session_id() 检查这一点。我想从 PHP AJAX 脚本访问这些会话变量。为了测试这一点,我只需

session_start();
echo session_id();

从这个 AJAX 脚本 执行:它返回不同的 AJAX 会话 ID。

我知道我可以将会话 ID 从主页传递到 AJAX 脚本。是否有另一种方法可以使 AJAX 脚本默认打开同一个会话?

为了澄清起见,我通过 javascript 执行此操作,更具体地说,它是 JQGrid 的添加/编辑脚本。

I have a main page that starts a PHP session, which creates session ID #1. I check this with session_id(). I want to access these session variables from a PHP AJAX script. To test this i just simply execute:

session_start();
echo session_id();

from this AJAX script. It returns a different AJAX session ID.

I know I can pass the session ID from the main page to the AJAX script. Is there another way to make the AJAX script open the same session by default?

For clarification I am doing this via javascript, more specifically it is the add/edit script for JQGrid.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑脸一如从前 2025-01-01 23:17:22

这很简单。

在ajax中,将您的session_id发布到ajax php.ini中。

在 ajax php 中将其设置为: session_id($_REQUEST['sid'])

那么您位于同一个会话中

This is simple.

in ajax, post your session_id to the ajax php.

in ajax php set it like: session_id($_REQUEST['sid'])

then you are in the same session

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文