> JWH>You must call session_start before any output to the browser. A
blank
> JWH>line or space outside of PHP blocks is considered output. The
error
> JWH>message tells you exactly where the output started. Read the
manual
> for
> JWH>more information, it's all covered.
> 
> Hello,
> 
>   Actually i have started some javascript where its pointing as
> error..other than that i didn;t leave any line space..Can any one
please
> tell me how to do this..
> 
> Regards
> Uma

Okay.... anything outside of the <? And ?> php tags is considered output
to the browser. Session_start must be before all of this. 

In other words, you file should start like this:

<?
session_start();

//other PHP stuff
?>
<html>
...

---John Holmes...



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to