|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-02-18 22:51 UTC] warrenp at mountaincable dot net
Somewhat related to "Bug #14529 script doesn't always finish output". I just finished writing a script that is 82 Kb big. The script runs fine with no errors but when I converted it to a phps and viewed it, It would constantly refresh inside the window. I was able to fix a problem with a similar incident by putting flush() functions in a loop with many many print and echo statements. That fixed that but I can't do that with the phps file. I have the website availeable if needed. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 00:00:02 2025 UTC |
I ran the same thing (apply.phps) under windows 98 and it seemed to work. Although here is a script that will produce the same result when i host it on XP: <?PHP print "<TABLE NOWRAP BORDER=1>"; //for ($j = 0; $j < 500; $j++) { for ($j = 0; $j < 200; $j++) { print "<TR>"; for ($i=0; $i< 10; $i++) print "<TD NOWRAP>Row $j -- Column $i</TD>"; print "</TR>\n"; } print "</TABLE>"; ?>