My webpage has session_start(); in it. On this page I have a link to a popup window. I want the code for this popup window to also utilize session_start(), so that I can read some session variables, but when I include it I get the following error:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home3/recordau/public_html/searchPopup.php:11) in /home3/recordau/public_html/searchPopup.php on line 13
So what is the best way to display session variables if I am not permitted to initiate the session in this popup window?
Thank you.