Thank you so much for your help. That last little bit just cleaned it up nice and tidy. I had to do a little variable work cause if there is noone online empty() would return false, but it now works exactly like i want it to.
Here is the final code.
Text Formatted Code
//Ventrilo Status
function phpblock_voipoutput() {
$status = exec('./ventrilo_status -c2 -t127.0.0.1 | grep \'CLIENTCOUNT\'');
// Have to put the status variable so that empty() will not return false if noone is logged on
$srvstatus = $status;
$status = eregi_replace('CLIENTCOUNT: ', '', $status);
if(empty($srvstatus)) {
$retval = '<p>Server address: www.othersideofspecial.com:3784</p><p><strong><font color="#FF0000">OFFLINE</font></strong></p><p><a href="http://www.ventrilo.com">Get Ventrilo</a></p>';
} else {
$retval = '<p>Server address: www.othersideofspecial.com:3784</p><p><strong><font color="#00FF00">ONLINE</font></strong></p><p>Clients Online : ' . $status . '</p></p><p><a href="http://www.ventrilo.com">Get Ventrilo</a></p>';
}
return $retval;
}