Re: [PHP] losing session values [SOLVED]

2005-05-04 Thread Angelo Zanetti
hi guys, solved the problem. it was the register_globals setting in the php.ini file. made a .htacess file and set it to off; works 100% also made all redirects like this: session_write_close(); header("Location: buddyList.php"); exit(); note the

Re: [PHP] losing session values [SOLVED]

2005-05-04 Thread Angelo Zanetti
hi guys, solved the problem. it was the register_globals setting in the php.ini file. made a .htacess file and set it to off; works 100% also made all redirects like this: session_write_close(); header("Location: buddyList.php"); exit(); note the