Hi need help!
How can I see active connections to my site right now?
already have this "
<?php
$myShellString = "netstat -n -a | grep $REMOTE_ADDR:$REMOTE_PORT |
wc -l";
$myStatus = shell_exec($myShellString);
do {
print(" $REMOTE_ADDR ");
} while ( (int)$myStatus > 0);
?>
this shows me only my ip-address!