<?php
   session_start();
   $_SESSION['start']=1;
   echo $_SESSION['start'];
?>
Output in FF:
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at .../test.php:1) in.../test.php on line 10
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent by (output started at .../test.php:1) in.../test.php on line 10
 
     
     
     
    