Hey I Am Getting This Error Message Please Help Me Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/user/public_html/index.php:1) in /home/user/public_html/funcs.php on line 44 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/user/public_html/index.php:1) in /home/user/public_html/funcs.php on line 44
You need to put your code handling cookies at the absolute beginning of the page, literally before anything else, or you will get this error message.
you must have session_start() function at the very top of the php page. There should be absolutely NO html elements in the top of the page, even a white blank.
Two things can use this: 1) Outputs of HTML like said above. 2) Outputs of headers using the header function. Peace,