DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42535>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42535

           Summary: php output to browser stopped midway
           Product: Apache httpd-2
           Version: 2.0.55
          Platform: Other
        OS/Version: All
            Status: NEW
          Severity: critical
          Priority: P2
         Component: All
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]
                CC: [EMAIL PROTECTED]


Hi,

Apache stops printing php(version 5.1.2) statements after looping through the
array, and does not reach a point where I print "hello there !"  message.
i need to output beyound the print statements in array, to execute javascript in
client browser. Please help !

try catch messages are not showing any error !
Note : all my pages work perfectly even with huge outputs, only this
multi-dimensional array output is the problem


Thanks 
Irfan Ahmed

*********
here is the code below
<?php 

try{
 while( $localcount < $localcountfinal  ) {
                                                         
if(($completeTreeLocal[$localcount]["node"]+0) != 50000 ){                      
       
                                                                                
        print  $completeTreeLocal[$localcount]["routePath"];
        }

$localcount++;
 }
$_SESSION['completeTreeStruct'] =  serialize( $completeTreeLocal);      
 } catch (Exception $e) {
echo ' Caught exception: ',  $e->getMessage(), "\n";
}

print "hello there !";

?>

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to