|
Posted by Markus on 07/13/07 08:44
bashar schrieb:
> Hi,
>
> I keep getting this error: Warning: session_start() [function.session-
> start]: Cannot send session cookie - headers already sent by (output
> started at c:\wamp\www\testlogin.php:1) in c:\wamp\www\testlogin.php
> on line 2
>
> All people are referring to extra line at the end and related issues,
> but it doesn't seem to be my problem:
>
> Here is the code:
> ====================
> <?php
> session_start();?>
There must be some kind of output at line 1 before the <?php statement.
If you don't see a space or other character there, my guess is that you
use some UTF-* encoding, probably UTF-8, and your code editor inserts a
BOM at the beginning of the file, but does not display it.
To find out, you need to get a code editor such as VIM or Maguma, and
open the PHP file. If you see some strange characters before <?php,
delete them, and your script should work.
HTH
Markus
[Back to original message]
|