问题描述
我正在努力更好地了解会话的工作方式。
在网页的开头,我做了session_start()或者
session_register(...)。当用户进入下一页时,我知道页面
需要获取SSID。我知道我可以把它作为一个cookie,隐藏的字段等发送,
但是有什么其他方式可以发送它?例如,我知道第二页顶部的
session_registering变量可以正常工作。
如果用户访问任何纯html页面(扩展名为html),当他们回到我的php页面时,我怎么能得到
会话。如果没有页面上的php,
如何传播SSID?
提前感谢
--- Michael
I''m trying to get a better feel for exactly how sessions work.
At the beginning of a web page, I do either a session_start() or a
session_register(...). When the user goes to the next page, I know the page
needs to get the SSID. I know I can send it as a cookie, hidden field, etc,
but what other ways are available to send it? For example, I know that
session_registering variables at the top of the second page works.
If the user visits any pure html pages (extension html), how can I get the
session back when they come back to my php pages. Without php on the page,
how can I propagate the SSID?
thanks in advance
---Michael
推荐答案
恕我直言,没有办法在纯HTML页面中携带会话ID。
可能你可能需要强制PHP解析html页面(在Apache中通过
设置)。也许还想尝试trans sid设置。
session_register()已经过时了。请参考手册
< http://www.php.net/session>
-
<? php echo''只是另一个PHP圣徒''; ?>
电子邮件:rrjanbiah-at-Y!com博客:
IMHO, there is no way to carry the session id in pure html pages.
Probably you may need to force the html pages to be parsed by PHP (by
settings in Apache). May also want to try trans sid setting.
session_register() is obsolete. Please refer manual
<http://www.php.net/session>
--
<?php echo ''Just another PHP saint''; ?>
Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/
让PHP使用默认解决方案来处理它:cookies。
-
- +álvaroG。Vicario - 西班牙布尔戈斯
+ - (la web de humor barnizada para la intemperie)
++ Manda tus dudas al grupo,no amibuzón
- +将你的问题发送给小组,而不是到我的邮箱
-
Just let PHP take care of it with the default solution: cookies.
--
-+ álvaro G. Vicario - Burgos, Spain
+- http://www.demogracia.com (la web de humor barnizada para la intemperie)
++ Manda tus dudas al grupo, no a mi buzón
-+ Send your questions to the group, not to my mailbox
--
你不想要使用session_register()。使用
You don''t want to use session_register(). Use the
这篇关于会话维护的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!