Posted by CountDraculla on 11/21/88 11:27
Create the session variable in index page first(not in framed page)
cause that will not affect ur framed page and help to persist the
session_id. Then pass it to your frame page using session_id()
function.
for example, your frame page url will be
<frame src=your_page_url?PHPSESSID=<?=session_id();?>
This will solve your problem.
NB: It may not be PHPSESSID in some cases, depending upon ur php.ini
setting.
--Hasin
http://hasin.phpxperts.com
[Back to original message]
|