I have a multi page app and I'm using sessions to pass variables around to control the displayed data from a mySql db..
What basically happens is...
i have session variables, three of them, printing out on two different pages using:
Code: Select all
echo '<pre>';
print_r($HTTP_SESSION_VARS);
echo '</pre>';when I comment out my header redirects and print out the $HTTP_SESSION_VARS array instead of redirecting to the third page, they display fine. however.. if i allow the redirect and try to print out the $HTTP_SESSION_VARS array on the third page, one of my session variables that i need is missing and i havne't a clue why..
sessions are started on all three pages
also it may be helpful to note that i have output buffering started using ob_start() on all pages..
i'd appreciate any help...
Thank you