memmory - browser lag after some use

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
lioslios
Forum Newbie
Posts: 2
Joined: Wed Jan 11, 2012 7:05 pm

memmory - browser lag after some use

Post by lioslios »

guys for some reson my browser lags on my page, but not in the start of use, but after i use the page for while,

in every php file i use the

<?php
ob_start();
.........


ob_flush();
ob_end_clean();

?>


also in some submit buttons i have the
header("location:someotherfile.php");
exit();

to call other pages


is any other command that cleans the buffers or memory.. i think somthing like this is my problem
im beginer with php
any idea??
User avatar
Tiancris
Forum Commoner
Posts: 39
Joined: Sun Jan 08, 2012 9:54 pm
Location: Mar del Plata, Argentina

Re: memmory - browser lag after some use

Post by Tiancris »

I found strange that you have php code in your buttons. Where you put that code exactly? May be HTML code of that page isn't correct and that's the reason of the lag...
Post Reply