| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2000-07-11 05:29 UTC] sas at cvs dot php dot net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 13:00:02 2025 UTC | 
There seems to be a bug in the ISAPI-Module which prevents the server from sending any data back to the browser as soon as session_start() is called? My test data: <pre> <?php session_register("count"); $count++; ?> Hello visitor, you have seen this page <? echo $count; ?> times.<p> </pre> stored as session_test.php and session_test.php4, where .php is executed by the ISAPI-Module and .php4 by the executeable php.exe. the .php-script returns "document contains no data", the .php4 works as expected.