A useful stat - this code will tell you how long your server has been online. Copy and paste it where you want it to appear.
<?php $data = shell_exec('uptime'); $uptime = explode(' up ', $data); $uptime = explode(',', $uptime[1]); $uptime = $uptime[0].', '.$uptime[1]; echo ("$uptime"); ?>
Go back home