The function session_start is sending a cookie. This means that you can't echo anything before. Its the same rules as with setcookie.
"Iggy" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > can somebody tell me why I am getting this: > Warning: session_start() [function.session-start]: Cannot send session > cookie - headers already sent by (output started at > c:\inetpub\wwwroot\search.php:8) in c:\inetpub\wwwroot\search.php on line 21 > > Warning: session_start() [function.session-start]: Cannot send session cache > limiter - headers already sent (output started at > c:\inetpub\wwwroot\search.php:8) in c:\inetpub\wwwroot\search.php on line 21 > > > when I use this code: > > session_start(); > if (!isset($_SESSION['count'])) { > $_SESSION['count'] = 0; > } > > > PHP is version 4.3.1 > > thanx > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php