Yok hocam Alttakileri Aynen uyguluyorum Olmuyor maalesef





Installation Guide
------------------------------------------------------------------------
1. Upload doc.php, online.txt, and the js folder to the location where
the script will be running.



2. Open the file your script will be running on, eg. index.php and
place the following code in your headers (between <head> and </head>):

Alıntı
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/spy.js" type="text/javascript"></script>

<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#doc').spy({ limit: 1, fadeLast: 0, ajax: 'doc.php', timeout: 3000});
});
</script>

3. Then insert this code where you would like your counter to be displayed:

Alıntı
<div id="doc" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px">
<div id="online"><strong>online</strong>: 0</div>
</div>

Now save your file and enjoy!