[PHP] $_SESSION[''] variable not get passed

2003-11-10 Thread S.P.Vimala
Hi, I have apache, php 4.1.2 running on windows machine. The following are the seetings related to sessions in php.ini file register_globals =off session.autostart=1 session.use cookies=0 session.use_trans_sid=1 Now i have the following code

Re: [PHP] $_SESSION[''] variable not get passed

2003-11-10 Thread Rob Burris
S.P.Vimala wrote: Now the session_id get passwd across forms but the session variable does not get passwed. Any guess what is the problem. -vimala/. You need to call session_start() on frm2.php to resume the session http://us2.php.net/manual/en/function.session-start.php --