ttt0z, Stat.html: Code: <html> <head> <meta http-equiv="Content-Type" content="text/html; Charset=UTF-8"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script> </head> <body> Статистика: </br> <div id="content"></div> <script> function show() { $.ajax({ url: "stat.php", cache: false, success: function(html){ $("#content").html(html); } }); } $(document).ready(function(){ show(); setInterval('show()',1000); }); </script> </body> </html> stat.php: PHP: <? $a=rand(1,90); echo $a; ?>