Hi guys, i have a one problem.. Script JS:
$().ready(function() { $(window).load(function () { $("#content").append("Connessione in corso..<br>"); $.get("bot.php", function(data){ $("#content").html(data); }); }); }); /* file bot.php */ while($i<85000){ echo "$i<br>"; $i++; } /****************************/ Why my script dosn't work perfectly? I found one error by firefox 'debug error'. Sorry for my english. Thanks.