Players Online:
This one will not display your players online unless you are running a website on the same computer as the server.
I am working on making a code that can grab the users online from a website that isn't hosted on the servers computer.
PHP Code:
<?php echo (exec('netstat -a -n |find "5816" |find "ESTABLISHED" /c')-2); ?>
PHP Code:
<?php
$output = shell_exec ("netstat -an |grep :80 |wc -l");
echo $output;
?>
it will change as the page is refreshed, tested and working 100%






