I just insert the function : ob_start("ob_gzhandler");
to make the load of the page faster than normal & it's working perfect with my page, but when i refresh any page contain that function, some times HTML codes appear in the top of the page.
I also check the HTML source of the page after refresh and discover that the code is not completed.
So I just want to now what should i do to prevent this problem when refreshing the page.
My code is like :
<?
ob_start("ob_gzhandler");
include "connection.php";
ini_set(max_execution_time,"90");
include "top.php";
extract($HTTP_COOKIE_VARS);
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
?>
LOGN HTML CODES
<?
echo "</tr><tr></table><table>"; }
if(($x%$t)==0) { $t=$t+3; echo "</tr></table><table width=\"60%\"><tr>"; }
$x++;
}
?>
</tr>
</table>
<p> </p>
</center>
</div>
</td>
</tr>
<tr>
<td width="100%"><br>
</td>
</tr>
</table>
</span>
</span>
</span>
<?
include "footer.php";
?>