04-30-2008, 03:09 PM
|
#8 (permalink)
|
|
Wizard
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
|
Quote:
Originally Posted by ricrhys
cheers guys got the log in bit working now, but the session start seems to be giving me an error Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /berw/ugrad1/base/r/rre7/public_html/sonicandtails/test.php:2) in /berw/ugrad1/base/r/rre7/public_html/sonicandtails/test.php on line 3
any ideas why its doing this
|
Yes, you cant do session_start after the headers have ended. This is either caused by you outputting anything. Simply put, you must do that command before you output a line of text.
|
|
|
|